Enum DDSType
- java.lang.Object
-
- java.lang.Enum<DDSType>
-
- com.twelvemonkeys.imageio.plugins.dds.DDSType
-
-
Field Summary
Fields Modifier and Type Field Description private int
value
-
Constructor Summary
Constructors Modifier Constructor Description private
DDSType(int value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
value()
static DDSType
valueOf(int value)
Returns the enum constant of this type with the specified name.static DDSType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DDSType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DXT1
public static final DDSType DXT1
-
DXT2
public static final DDSType DXT2
-
DXT3
public static final DDSType DXT3
-
DXT4
public static final DDSType DXT4
-
DXT5
public static final DDSType DXT5
-
A1R5G5B5
public static final DDSType A1R5G5B5
-
X1R5G5B5
public static final DDSType X1R5G5B5
-
A4R4G4B4
public static final DDSType A4R4G4B4
-
X4R4G4B4
public static final DDSType X4R4G4B4
-
R5G6B5
public static final DDSType R5G6B5
-
R8G8B8
public static final DDSType R8G8B8
-
A8B8G8R8
public static final DDSType A8B8G8R8
-
X8B8G8R8
public static final DDSType X8B8G8R8
-
A8R8G8B8
public static final DDSType A8R8G8B8
-
X8R8G8B8
public static final DDSType X8R8G8B8
-
-
Method Detail
-
values
public static DDSType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DDSType c : DDSType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DDSType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
value
public int value()
-
valueOf
public static DDSType valueOf(int value)
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:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-