Package io.adminshell.aas.v3.model
Enum ReferableElements
- java.lang.Object
-
- java.lang.Enum<ReferableElements>
-
- io.adminshell.aas.v3.model.ReferableElements
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ReferableElements>
public enum ReferableElements extends java.lang.Enum<ReferableElements>
Enumeration of all referable elements within an asset administration shell. Contains 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 abstractFILEMULTI_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 ReferableElementsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ReferableElements[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSET
public static final ReferableElements ASSET
-
ASSET_ADMINISTRATION_SHELL
public static final ReferableElements ASSET_ADMINISTRATION_SHELL
-
CONCEPT_DESCRIPTION
public static final ReferableElements CONCEPT_DESCRIPTION
-
SUBMODEL
public static final ReferableElements SUBMODEL
-
ACCESS_PERMISSION_RULE
public static final ReferableElements ACCESS_PERMISSION_RULE
-
ANNOTATED_RELATIONSHIP_ELEMENT
public static final ReferableElements ANNOTATED_RELATIONSHIP_ELEMENT
-
BASIC_EVENT
public static final ReferableElements BASIC_EVENT
-
BLOB
public static final ReferableElements BLOB
-
CAPABILITY
public static final ReferableElements CAPABILITY
-
CONCEPT_DICTIONARY
public static final ReferableElements CONCEPT_DICTIONARY
-
DATA_ELEMENT
public static final ReferableElements 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 ReferableElements ENTITY
-
EVENT
public static final ReferableElements EVENT
Event is abstract
-
FILE
public static final ReferableElements FILE
-
MULTI_LANGUAGE_PROPERTY
public static final ReferableElements MULTI_LANGUAGE_PROPERTY
Property with a value that can be provided in multiple languages.
-
OPERATION
public static final ReferableElements OPERATION
-
PROPERTY
public static final ReferableElements PROPERTY
-
RANGE
public static final ReferableElements RANGE
-
REFERENCE_ELEMENT
public static final ReferableElements REFERENCE_ELEMENT
-
RELATIONSHIP_ELEMENT
public static final ReferableElements RELATIONSHIP_ELEMENT
-
SUBMODEL_ELEMENT
public static final ReferableElements 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 ReferableElements SUBMODEL_ELEMENT_COLLECTION
Collection of Submodel Elements
-
VIEW
public static final ReferableElements VIEW
-
-
Method Detail
-
values
public static ReferableElements[] 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 (ReferableElements c : ReferableElements.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReferableElements 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
-
-