public enum AutoTypeImage extends java.lang.Enum<AutoTypeImage>
| Enum Constant and Description |
|---|
F32 |
F64 |
I |
I16 |
I8 |
S16 |
S32 |
S64 |
S8 |
U16 |
U8 |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAbbreviatedType() |
java.lang.String |
getBitWise() |
java.lang.String |
getDataType() |
static AutoTypeImage[] |
getFloatingTypes() |
static AutoTypeImage[] |
getGenericTypes() |
static AutoTypeImage[] |
getIntegerTypes() |
java.lang.String |
getInterleavedName() |
java.lang.String |
getLargeSumType() |
java.lang.Number |
getMax() |
java.lang.Number |
getMin() |
int |
getNumBits() |
java.lang.Class<?> |
getPrimitiveType() |
java.lang.String |
getRandType() |
static AutoTypeImage[] |
getReallyGenericTypes() |
static AutoTypeImage[] |
getSigned() |
java.lang.String |
getSingleBandName() |
static AutoTypeImage[] |
getSpecificTypes() |
java.lang.String |
getSumType() |
java.lang.String |
getTypeCastFromSum() |
static AutoTypeImage[] |
getUnsigned() |
boolean |
isInteger() |
boolean |
isSigned() |
static AutoTypeImage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoTypeImage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoTypeImage I
public static final AutoTypeImage I8
public static final AutoTypeImage U8
public static final AutoTypeImage S8
public static final AutoTypeImage I16
public static final AutoTypeImage U16
public static final AutoTypeImage S16
public static final AutoTypeImage S32
public static final AutoTypeImage S64
public static final AutoTypeImage F32
public static final AutoTypeImage F64
public static AutoTypeImage[] values()
for (AutoTypeImage c : AutoTypeImage.values()) System.out.println(c);
public static AutoTypeImage 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 AutoTypeImage[] getIntegerTypes()
public static AutoTypeImage[] getFloatingTypes()
public static AutoTypeImage[] getGenericTypes()
public static AutoTypeImage[] getReallyGenericTypes()
public static AutoTypeImage[] getSpecificTypes()
public static AutoTypeImage[] getSigned()
public static AutoTypeImage[] getUnsigned()
public java.lang.String getInterleavedName()
public java.lang.String getSingleBandName()
public java.lang.String getDataType()
public java.lang.String getBitWise()
public java.lang.String getSumType()
public java.lang.String getLargeSumType()
public boolean isInteger()
public boolean isSigned()
public int getNumBits()
public java.lang.Class<?> getPrimitiveType()
public java.lang.String getTypeCastFromSum()
public java.lang.String getAbbreviatedType()
public java.lang.String getRandType()
public java.lang.Number getMax()
public java.lang.Number getMin()