public enum JPEG2000BoxType extends java.lang.Enum<JPEG2000BoxType> implements loci.common.enumeration.CodedEnum
Modifier and Type | Field and Description |
---|---|
private int |
code
Code for the box type.
|
private static java.util.Map<java.lang.Integer,JPEG2000BoxType> |
lookup
Map used to retrieve the box type corresponding to the code.
|
private java.lang.String |
name
The name of the box type.
|
Modifier and Type | Method and Description |
---|---|
static JPEG2000BoxType |
get(int code)
Retrieves the box type by reverse lookup of its "code".
|
int |
getCode()
Implemented as specified by the
CodedEnum I/F. |
java.lang.String |
getName()
Returns the name of the box type.
|
static JPEG2000BoxType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JPEG2000BoxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPEG2000BoxType SIGNATURE
public static final JPEG2000BoxType SIGNATURE_WRONG_ENDIANNESS
public static final JPEG2000BoxType FILE
public static final JPEG2000BoxType HEADER
public static final JPEG2000BoxType IMAGE_HEADER
public static final JPEG2000BoxType BITS_PER_COMPONENT
public static final JPEG2000BoxType COLOUR_SPECIFICATION
public static final JPEG2000BoxType PALETTE
public static final JPEG2000BoxType COMPONENT_MAPPING
public static final JPEG2000BoxType CHANNEL_DEFINITION
public static final JPEG2000BoxType RESOLUTION
public static final JPEG2000BoxType CAPTURE_RESOLUTION
public static final JPEG2000BoxType DEFAULT_DISPLAY_RESOLUTION
public static final JPEG2000BoxType CONTIGUOUS_CODESTREAM
public static final JPEG2000BoxType INTELLECTUAL_PROPERTY
public static final JPEG2000BoxType XML
public static final JPEG2000BoxType UUID
public static final JPEG2000BoxType UUID_INFO
public static final JPEG2000BoxType UUID_LIST
public static final JPEG2000BoxType URL
public static final JPEG2000BoxType ASSOCIATION
public static final JPEG2000BoxType LABEL
public static final JPEG2000BoxType PLACEHOLDER
private int code
private java.lang.String name
private static final java.util.Map<java.lang.Integer,JPEG2000BoxType> lookup
public static JPEG2000BoxType[] values()
for (JPEG2000BoxType c : JPEG2000BoxType.values()) System.out.println(c);
public static JPEG2000BoxType 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 JPEG2000BoxType get(int code)
code
- The code to look up.JPEG2000BoxType
instance for the
code
or null
if it does not exist.public int getCode()
CodedEnum
I/F.getCode
in interface loci.common.enumeration.CodedEnum
CodedEnum.getCode()
public java.lang.String getName()
Copyright © 2019 Open Microscopy Environment