public final class AsfDescriptorType extends Object implements IEnumValue
Defines ASF descriptor types.
Modifier and Type | Field and Description |
---|---|
static AsfDescriptorType |
Bool
The 32-bit bool type.
|
static AsfDescriptorType |
ByteArray
The byte array type.
|
static AsfDescriptorType |
DWord
The 32-bit unsigned integer type.
|
static AsfDescriptorType |
Guid
The 128-bit (16 byte) GUID type.
|
static AsfDescriptorType |
QWord
The 64-bit unsigned integer type.
|
static AsfDescriptorType |
Unicode
The unicode string type.
|
static AsfDescriptorType |
Word
The 16-bit unsigned integer type.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
Object[] |
getAllValues()
Returns the array of all values defined in the class.
|
static AsfDescriptorType |
getByRawValue(int rawValue) |
IEnumValue |
getEnumValueByName(String name)
Returns the enumeration value by its name.
|
IEnumValue |
getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
|
static IEnumValue |
getFirst() |
int |
getRawValue()
Returns the raw value of this enumeration value.
|
RawIntegerType |
getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
|
int |
hashCode() |
String |
name()
Returns the name of this enumeration value.
|
public static final AsfDescriptorType Unicode
The unicode string type.
public static final AsfDescriptorType ByteArray
The byte array type.
public static final AsfDescriptorType Bool
The 32-bit bool type.
public static final AsfDescriptorType DWord
The 32-bit unsigned integer type.
public static final AsfDescriptorType QWord
The 64-bit unsigned integer type.
public static final AsfDescriptorType Word
The 16-bit unsigned integer type.
public static final AsfDescriptorType Guid
The 128-bit (16 byte) GUID type.
public static AsfDescriptorType getByRawValue(int rawValue)
public static IEnumValue getFirst()
public Object[] getAllValues()
IEnumValue
Returns the array of all values defined in the class.
getAllValues
in interface IEnumValue
public IEnumValue getEnumValueByRawValue(int rawValue)
IEnumValue
Returns the enumeration value by the raw value associated with it.
getEnumValueByRawValue
in interface IEnumValue
rawValue
- The raw value.public IEnumValue getEnumValueByName(String name)
IEnumValue
Returns the enumeration value by its name.
getEnumValueByName
in interface IEnumValue
name
- The name of the enumeration value.public RawIntegerType getRawValueType()
IEnumValue
Returns the underlying type of the raw value of this enumeration value.
getRawValueType
in interface IEnumValue
public int getRawValue()
IEnumValue
Returns the raw value of this enumeration value.
getRawValue
in interface IEnumValue
public String name()
IEnumValue
Returns the name of this enumeration value.
name
in interface IEnumValue