Package io.adminshell.aas.v3.model
Enum IdentifiableElements
- java.lang.Object
-
- java.lang.Enum<IdentifiableElements>
-
- io.adminshell.aas.v3.model.IdentifiableElements
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IdentifiableElements>
public enum IdentifiableElements extends java.lang.Enum<IdentifiableElements>
Enumeration of all identifiable elements within an asset administration shell that are not identifiable
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSETASSET_ADMINISTRATION_SHELLCONCEPT_DESCRIPTIONSUBMODEL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IdentifiableElementsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IdentifiableElements[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSET
public static final IdentifiableElements ASSET
-
ASSET_ADMINISTRATION_SHELL
public static final IdentifiableElements ASSET_ADMINISTRATION_SHELL
-
CONCEPT_DESCRIPTION
public static final IdentifiableElements CONCEPT_DESCRIPTION
-
SUBMODEL
public static final IdentifiableElements SUBMODEL
-
-
Method Detail
-
values
public static IdentifiableElements[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IdentifiableElements c : IdentifiableElements.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentifiableElements valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-