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

public enum ChassisIdSubtype extends Enum<ChassisIdSubtype> implements UaEnumeratedType
See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
     

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Represents a chassis identifier based on the value of entPhysicalAlias object (defined in IETF RFC 2737) for a chassis component (i.e., an entPhysicalClass value of chassis(3))
    Represents a chassis identifier based on the value of ifAlias object (defined in IETF RFC 2863) for an interface on the containing chassis.
    Represents a chassis identifier based on the value of ifName object (defined in IETF RFC 2863) for an interface on the containing chassis.
    Represents a chassis identifier based on a locally defined value.
    Represents a chassis identifier based on the value of a unicast source address (encoded in network byte order and IEEE 802.3 canonical bit order) of a port on the containing chassis as defined in IEEE Std 802-2014.
    Represents a chassis identifier based on a network address associated with a particular chassis.
    Represents a chassis identifier based on the value of entPhysicalAlias object (defined in IETF RFC 2737) for a port or backplane component (i.e., entPhysicalClass has a value of port(10), or backplane(4)), within the containing chassis.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    static @Nullable ChassisIdSubtype
    from(int value)
     
    Get the ExpandedNodeId identifying this DataType.
    int
    Get the numeric value associated with this enumerated value.
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.eclipse.milo.opcua.stack.core.types.UaDataType

    getTypeName

    Methods inherited from interface org.eclipse.milo.opcua.stack.core.types.UaEnumeratedType

    getName
  • Enum Constant Details

    • ChassisComponent

      public static final ChassisIdSubtype ChassisComponent
      Represents a chassis identifier based on the value of entPhysicalAlias object (defined in IETF RFC 2737) for a chassis component (i.e., an entPhysicalClass value of chassis(3))
    • InterfaceAlias

      public static final ChassisIdSubtype InterfaceAlias
      Represents a chassis identifier based on the value of ifAlias object (defined in IETF RFC 2863) for an interface on the containing chassis.
    • PortComponent

      public static final ChassisIdSubtype PortComponent
      Represents a chassis identifier based on the value of entPhysicalAlias object (defined in IETF RFC 2737) for a port or backplane component (i.e., entPhysicalClass has a value of port(10), or backplane(4)), within the containing chassis.
    • MacAddress

      public static final ChassisIdSubtype MacAddress
      Represents a chassis identifier based on the value of a unicast source address (encoded in network byte order and IEEE 802.3 canonical bit order) of a port on the containing chassis as defined in IEEE Std 802-2014.
    • NetworkAddress

      public static final ChassisIdSubtype NetworkAddress
      Represents a chassis identifier based on a network address associated with a particular chassis. The encoded address is actually composed of two fields. The first field is a single octet, representing the IANA AddressFamilyNumbers value for the specific address type, and the second field is the network address value.
    • InterfaceName

      public static final ChassisIdSubtype InterfaceName
      Represents a chassis identifier based on the value of ifName object (defined in IETF RFC 2863) for an interface on the containing chassis.
    • Local

      public static final ChassisIdSubtype Local
      Represents a chassis identifier based on a locally defined value.
  • Method Details

    • values

      public static ChassisIdSubtype[] 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 ChassisIdSubtype 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 ChassisIdSubtype from(int value)
    • definition

      public static EnumDefinition definition()