Enum OpcuaIdentifierType
- java.lang.Object
-
- java.lang.Enum<OpcuaIdentifierType>
-
- org.apache.plc4x.java.opcua.readwrite.OpcuaIdentifierType
-
- All Implemented Interfaces:
Serializable,Comparable<OpcuaIdentifierType>
public enum OpcuaIdentifierType extends Enum<OpcuaIdentifierType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINARY_IDENTIFIERGUID_IDENTIFIERNUMBER_IDENTIFIERSTRING_IDENTIFIER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OpcuaIdentifierTypeenumForValue(String value)StringgetValue()static BooleanisDefined(String value)static OpcuaIdentifierTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OpcuaIdentifierType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING_IDENTIFIER
public static final OpcuaIdentifierType STRING_IDENTIFIER
-
NUMBER_IDENTIFIER
public static final OpcuaIdentifierType NUMBER_IDENTIFIER
-
GUID_IDENTIFIER
public static final OpcuaIdentifierType GUID_IDENTIFIER
-
BINARY_IDENTIFIER
public static final OpcuaIdentifierType BINARY_IDENTIFIER
-
-
Method Detail
-
values
public static OpcuaIdentifierType[] 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 (OpcuaIdentifierType c : OpcuaIdentifierType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpcuaIdentifierType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
enumForValue
public static OpcuaIdentifierType enumForValue(String value)
-
-