Enum GeneratedClassAttribute.ClassAttributeType
java.lang.Object
java.lang.Enum<GeneratedClassAttribute.ClassAttributeType>
edu.nps.moves.dis7.source.generator.pdus.GeneratedClassAttribute.ClassAttributeType
- All Implemented Interfaces:
Serializable
,Comparable<GeneratedClassAttribute.ClassAttributeType>
,Constable
- Enclosing class:
GeneratedClassAttribute
public static enum GeneratedClassAttribute.ClassAttributeType
extends Enum<GeneratedClassAttribute.ClassAttributeType>
The various things an attribute can be: a primitive type (int, short, byte, etc),
a reference to another class defined in this document, a list of primitives, aka
an array, or a list of objects of variable length. An array could hold objects,
but we'll enforce this distinction for easy understanding.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionattribute propertyattribute propertyattribute propertyattribute propertyattribute propertyattribute propertyattribute propertyattribute propertyattribute propertyattribute propertyattribute property -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNSET
attribute property -
PRIMITIVE
attribute property -
CLASSREF
attribute property -
PRIMITIVE_LIST
attribute property -
OBJECT_LIST
attribute property -
SISO_ENUM
attribute property -
SISO_BITFIELD
attribute property -
PADTO16
attribute property -
PADTO32
attribute property -
PADTO64
attribute property -
STATIC_IVAR
attribute property
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-