java.lang.Object
java.lang.Enum<TsnStreamState>
org.eclipse.milo.opcua.stack.core.types.enumerated.TsnStreamState
All Implemented Interfaces:
Serializable, Comparable<TsnStreamState>, Constable, UaDataType, UaEnumeratedType

public enum TsnStreamState extends Enum<TsnStreamState> implements UaEnumeratedType
See Also:
  • Enum Constant Details

    • Disabled

      public static final TsnStreamState Disabled
      The related TSN Stream is currently disabled.
    • Configuring

      public static final TsnStreamState Configuring
      The related TSN Stream is in the process of receiving configuration parameters from the TSN Control Layer.
    • Ready

      public static final TsnStreamState Ready
      The related TSN Stream has successfully received and applied the configuration from the TSN Control Layer. The related TSN Stream is not fully operational as long as local preconditions (e.g. synchronization state) are not valid.
    • Operational

      public static final TsnStreamState Operational
      The related TSN Stream object is configured and all other required preconditions (e.g. synchronization state) for sending / receiving data are valid.
    • Error

      public static final TsnStreamState Error
      The related TSN Stream object is in an error state.
  • Method Details

    • values

      public static TsnStreamState[] 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

      public static TsnStreamState valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()
      Description copied from interface: UaEnumeratedType
      Get the numeric value associated with this enumerated value.
      Specified by:
      getValue in interface UaEnumeratedType
      Returns:
      the numeric value associated with this enumerated value.
    • getTypeId

      public ExpandedNodeId getTypeId()
      Description copied from interface: UaDataType
      Get the ExpandedNodeId identifying this DataType.
      Specified by:
      getTypeId in interface UaDataType
      Returns:
      the ExpandedNodeId identifying this DataType.
    • from

      public static @Nullable TsnStreamState from(int value)
    • definition

      public static EnumDefinition definition()