/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.model.api.type; import java.util.Objects; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.common.YangConstants; /** * Contains methods for getting data from the instance-identifier YANG built-in type. */ public interface InstanceIdentifierTypeDefinition extends RequireInstanceRestrictedTypeDefinition { /** * Well-known QName of the {@code instance-identifier} built-in type. */ QName QNAME = QName.create(YangConstants.RFC6020_YANG_MODULE, "instance-identifier").intern(); static int hashCode(final @NonNull InstanceIdentifierTypeDefinition type) { return Objects.hash(type.getQName(), type.getUnknownSchemaNodes(), type.getBaseType(), type.getUnits().orElse(null), type.getDefaultValue().orElse(null), type.requireInstance()); } static boolean equals(final @NonNull InstanceIdentifierTypeDefinition type, final @Nullable Object obj) { if (type == obj) { return true; } final InstanceIdentifierTypeDefinition other = TypeDefinitions.castIfEquals( InstanceIdentifierTypeDefinition.class, type, obj); return other != null && type.requireInstance() == other.requireInstance(); } static String toString(final @NonNull InstanceIdentifierTypeDefinition type) { return TypeDefinitions.toStringHelper(type).add("requireInstance", type.requireInstance()).toString(); } }