Package io.adminshell.aas.v3.model
Enum KeyElements
- java.lang.Object
-
- java.lang.Enum<KeyElements>
-
- io.adminshell.aas.v3.model.KeyElements
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<KeyElements>
public enum KeyElements extends java.lang.Enum<KeyElements>
Enumeration of different key value types within a key. Contains KeyElements, ReferableElements, and IdentifiableElements.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_PERMISSION_RULEANNOTATED_RELATIONSHIP_ELEMENTASSETASSET_ADMINISTRATION_SHELLBASIC_EVENTBLOBCAPABILITYCONCEPT_DESCRIPTIONCONCEPT_DICTIONARYDATA_ELEMENTData Element is abstract, i.e. if a key uses 'DataElement' the reference may be a Property, a File etc.ENTITYEVENTEvent is abstractFILEFRAGMENT_REFERENCEGLOBAL_REFERENCEreference to an element not belonging to an asset administration shellMULTI_LANGUAGE_PROPERTYProperty with a value that can be provided in multiple languages.OPERATIONPROPERTYRANGEREFERENCE_ELEMENTRELATIONSHIP_ELEMENTSUBMODELSUBMODEL_ELEMENTSubmodel Element is abstract, i.e. if a key uses 'SubmodelElement' the reference may be a Property, a SubmodelElementCollection, an Operation etc.SUBMODEL_ELEMENT_COLLECTIONCollection of Submodel ElementsVIEW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyElementsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static KeyElements[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSET
public static final KeyElements ASSET
-
ASSET_ADMINISTRATION_SHELL
public static final KeyElements ASSET_ADMINISTRATION_SHELL
-
CONCEPT_DESCRIPTION
public static final KeyElements CONCEPT_DESCRIPTION
-
SUBMODEL
public static final KeyElements SUBMODEL
-
FRAGMENT_REFERENCE
public static final KeyElements FRAGMENT_REFERENCE
-
GLOBAL_REFERENCE
public static final KeyElements GLOBAL_REFERENCE
reference to an element not belonging to an asset administration shell
-
ACCESS_PERMISSION_RULE
public static final KeyElements ACCESS_PERMISSION_RULE
-
ANNOTATED_RELATIONSHIP_ELEMENT
public static final KeyElements ANNOTATED_RELATIONSHIP_ELEMENT
-
BASIC_EVENT
public static final KeyElements BASIC_EVENT
-
BLOB
public static final KeyElements BLOB
-
CAPABILITY
public static final KeyElements CAPABILITY
-
CONCEPT_DICTIONARY
public static final KeyElements CONCEPT_DICTIONARY
-
DATA_ELEMENT
public static final KeyElements DATA_ELEMENT
Data Element is abstract, i.e. if a key uses 'DataElement' the reference may be a Property, a File etc.
-
ENTITY
public static final KeyElements ENTITY
-
EVENT
public static final KeyElements EVENT
Event is abstract
-
FILE
public static final KeyElements FILE
-
MULTI_LANGUAGE_PROPERTY
public static final KeyElements MULTI_LANGUAGE_PROPERTY
Property with a value that can be provided in multiple languages.
-
OPERATION
public static final KeyElements OPERATION
-
PROPERTY
public static final KeyElements PROPERTY
-
RANGE
public static final KeyElements RANGE
-
REFERENCE_ELEMENT
public static final KeyElements REFERENCE_ELEMENT
-
RELATIONSHIP_ELEMENT
public static final KeyElements RELATIONSHIP_ELEMENT
-
SUBMODEL_ELEMENT
public static final KeyElements SUBMODEL_ELEMENT
Submodel Element is abstract, i.e. if a key uses 'SubmodelElement' the reference may be a Property, a SubmodelElementCollection, an Operation etc.
-
SUBMODEL_ELEMENT_COLLECTION
public static final KeyElements SUBMODEL_ELEMENT_COLLECTION
Collection of Submodel Elements
-
VIEW
public static final KeyElements VIEW
-
-
Method Detail
-
values
public static KeyElements[] 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 (KeyElements c : KeyElements.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyElements 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
-
-