Enum TsnListenerStatus
- java.lang.Object
-
- java.lang.Enum<TsnListenerStatus>
-
- org.apache.plc4x.java.opcua.readwrite.TsnListenerStatus
-
- All Implemented Interfaces:
Serializable,Comparable<TsnListenerStatus>
public enum TsnListenerStatus extends Enum<TsnListenerStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description tsnListenerStatusFailedtsnListenerStatusNonetsnListenerStatusPartialFailedtsnListenerStatusReady
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TsnListenerStatusenumForValue(long value)longgetValue()static BooleanisDefined(long value)static TsnListenerStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static TsnListenerStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
tsnListenerStatusNone
public static final TsnListenerStatus tsnListenerStatusNone
-
tsnListenerStatusReady
public static final TsnListenerStatus tsnListenerStatusReady
-
tsnListenerStatusPartialFailed
public static final TsnListenerStatus tsnListenerStatusPartialFailed
-
tsnListenerStatusFailed
public static final TsnListenerStatus tsnListenerStatusFailed
-
-
Method Detail
-
values
public static TsnListenerStatus[] 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 (TsnListenerStatus c : TsnListenerStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TsnListenerStatus 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 long getValue()
-
enumForValue
public static TsnListenerStatus enumForValue(long value)
-
isDefined
public static Boolean isDefined(long value)
-
-