Enum Class StatusCode.InfoType
java.lang.Object
java.lang.Enum<StatusCode.InfoType>
org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode.InfoType
- All Implemented Interfaces:
Serializable,Comparable<StatusCode.InfoType>,Constable
- Enclosing class:
- StatusCode
Describes the type of information contained in the info bits.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic StatusCode.InfoTypeReturns the enum constant of this class with the specified name.static StatusCode.InfoType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NotUsed
The info bits are not used and shall be set to zero. -
DataValue
The StatusCode and its info bits are associated with a DataValue returned from the Server. -
Reserved
Reserved for future use. The info bits shall be ignored.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-