public static enum BmpHeaderDirectory.ColorSpaceType extends Enum<BmpHeaderDirectory.ColorSpaceType>
Enum Constant and Description |
---|
LCS_CALIBRATED_RGB
0 = Calibrated RGB
|
LCS_sRGB
"sRGB" = sRGB Color Space
|
LCS_WINDOWS_COLOR_SPACE
"Win " = System Default Color Space, sRGB
|
PROFILE_EMBEDDED
"MBED" = Embedded Profile
|
PROFILE_LINKED
"LINK" = Linked Profile
|
Modifier and Type | Method and Description |
---|---|
long |
getValue() |
String |
toString() |
static BmpHeaderDirectory.ColorSpaceType |
typeOf(long value) |
static BmpHeaderDirectory.ColorSpaceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BmpHeaderDirectory.ColorSpaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BmpHeaderDirectory.ColorSpaceType LCS_CALIBRATED_RGB
public static final BmpHeaderDirectory.ColorSpaceType LCS_sRGB
public static final BmpHeaderDirectory.ColorSpaceType LCS_WINDOWS_COLOR_SPACE
public static final BmpHeaderDirectory.ColorSpaceType PROFILE_LINKED
public static final BmpHeaderDirectory.ColorSpaceType PROFILE_EMBEDDED
public static BmpHeaderDirectory.ColorSpaceType[] values()
for (BmpHeaderDirectory.ColorSpaceType c : BmpHeaderDirectory.ColorSpaceType.values()) System.out.println(c);
public static BmpHeaderDirectory.ColorSpaceType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic long getValue()
public static BmpHeaderDirectory.ColorSpaceType typeOf(long value)
public String toString()
toString
in class Enum<BmpHeaderDirectory.ColorSpaceType>
Copyright © 2024. All rights reserved.