public static enum ObjectQ.AttributeType extends java.lang.Enum<ObjectQ.AttributeType>
Enum Constant and Description |
---|
ARRAY
Array of similar types.
|
CHAR
8 bits.
|
COMPLEX
Structure of mixed types.
|
LONG
32 bits.
|
NONE
Unassigned.
|
OCTETS
Byte array.
|
REFER
Reference to another type.
|
SHORT
16 bits.
|
STRING
Character string.
|
Modifier and Type | Method and Description |
---|---|
static ObjectQ.AttributeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectQ.AttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectQ.AttributeType ARRAY
public static final ObjectQ.AttributeType CHAR
public static final ObjectQ.AttributeType COMPLEX
public static final ObjectQ.AttributeType LONG
public static final ObjectQ.AttributeType NONE
public static final ObjectQ.AttributeType OCTETS
public static final ObjectQ.AttributeType REFER
public static final ObjectQ.AttributeType SHORT
public static final ObjectQ.AttributeType STRING
public static ObjectQ.AttributeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ObjectQ.AttributeType[] values()
for (ObjectQ.AttributeType c : ObjectQ.AttributeType.values()) System.out.println(c);