Enum Class AttributeType

java.lang.Object
java.lang.Enum<AttributeType>
org.tinyradius.core.attribute.type.AttributeType
All Implemented Interfaces:
Serializable, Comparable<AttributeType>, Constable

public enum AttributeType extends Enum<AttributeType>
  • Enum Constant Details

  • Method Details

    • values

      public static AttributeType[] 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 AttributeType 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
    • create

      public OctetsAttribute create(Dictionary dictionary, int vendorId, io.netty.buffer.ByteBuf data)
      Parameters:
      dictionary - dictionary to set attribute to use
      vendorId - -1 for top level attributes, otherwise vendorId if sub-attribute
      data - ByteBuf for entire attribute
      Returns:
      new attribute
    • create

      public OctetsAttribute create(Dictionary dictionary, int vendorId, int type, byte tag, byte[] value)
      Parameters:
      dictionary - dictionary to set attribute to use
      vendorId - -1 for top level attributes, otherwise vendorId if sub-attribute
      type - attribute type code
      tag - RFC2868 tag byte, ignored if vendorId/type does not support tags
      value - attribute value as byte array
      Returns:
      new attribute
    • create

      public OctetsAttribute create(Dictionary dictionary, int vendorId, int type, byte tag, String value)
      Parameters:
      dictionary - dictionary to set attribute to use
      vendorId - -1 for top level attributes, otherwise vendorId if sub-attribute
      type - attribute type code
      tag - RFC2868 tag byte, ignored if vendorId/type does not support tags
      value - attribute value as string, converted to byte array based on type defined by vendorId/type code
      Returns:
      new attribute
    • fromDataType

      public static AttributeType fromDataType(String dataType)