Enum VabOperationsProvider.Kind
- java.lang.Object
-
- java.lang.Enum<VabOperationsProvider.Kind>
-
- de.iip_ecosphere.platform.support.aas.basyx.VabOperationsProvider.Kind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<VabOperationsProvider.Kind>
- Enclosing class:
- VabOperationsProvider
private static enum VabOperationsProvider.Kind extends java.lang.Enum<VabOperationsProvider.Kind>
The main kinds of entries.- Author:
- Holger Eichelberger, SSE
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OPERATION'Refers' toVabOperationsProvider.operations.PROPERTY'Refers' toVabOperationsProvider.properties.
-
Constructor Summary
Constructors Modifier Constructor Description privateKind()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VabOperationsProvider.KindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static VabOperationsProvider.Kind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPERTY
public static final VabOperationsProvider.Kind PROPERTY
'Refers' toVabOperationsProvider.properties.
-
OPERATION
public static final VabOperationsProvider.Kind OPERATION
'Refers' toVabOperationsProvider.operations.
-
-
Method Detail
-
values
public static VabOperationsProvider.Kind[] 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 (VabOperationsProvider.Kind c : VabOperationsProvider.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VabOperationsProvider.Kind 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
-
-