public enum Jpeg2000CompressionProfile extends Enum<Jpeg2000CompressionProfile> implements Enumeration
Enum Constant and Description |
---|
DEFAULT
This is the default profile, which is recommended for those unfamiliar with the
others.
|
NITF_BIIF_EPJE
This profile is designed for U.S.
|
NITF_BIIF_NPJE
This profile is designed for U.S.
|
Modifier and Type | Method and Description |
---|---|
static Jpeg2000CompressionProfile |
getDefault()
Get the enum constant that is considered to be the default.
|
static Jpeg2000CompressionProfile |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static Jpeg2000CompressionProfile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Jpeg2000CompressionProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Jpeg2000CompressionProfile DEFAULT
public static final Jpeg2000CompressionProfile NITF_BIIF_NPJE
public static final Jpeg2000CompressionProfile NITF_BIIF_EPJE
public static Jpeg2000CompressionProfile[] values()
for (Jpeg2000CompressionProfile c : Jpeg2000CompressionProfile.values()) System.out.println(c);
public static Jpeg2000CompressionProfile 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 int getValue()
getValue
in interface Enumeration
@Nonnull public static Jpeg2000CompressionProfile getFromValue(int value)
value
- a numeric value.@Nonnull public static Jpeg2000CompressionProfile getDefault()