public enum LargeArrayType extends Enum<LargeArrayType>
| Enum Constant and Description |
|---|
BYTE |
COMPLEX_DOUBLE |
COMPLEX_FLOAT |
DOUBLE |
FLOAT |
INT |
LOGIC |
LONG |
OBJECT |
SHORT |
STRING |
UNSIGNED_BYTE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isComplexNumericType()
Returns true if a given LargeArray type is complex numeric, false otherwise
|
boolean |
isIntegerNumericType()
Returns true if a given LargeArray type is integer numeric, false otherwise
|
boolean |
isNumericType()
Returns true if a given LargeArray type is numeric, false otherwise
|
boolean |
isRealNumericType()
Returns true if a given LargeArray type is real numeric, false otherwise
|
long |
sizeOf()
Returns the size (in bytes) of a given LargeArray type.
|
static LargeArrayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LargeArrayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LargeArrayType LOGIC
public static final LargeArrayType BYTE
public static final LargeArrayType UNSIGNED_BYTE
public static final LargeArrayType SHORT
public static final LargeArrayType INT
public static final LargeArrayType LONG
public static final LargeArrayType FLOAT
public static final LargeArrayType DOUBLE
public static final LargeArrayType COMPLEX_FLOAT
public static final LargeArrayType COMPLEX_DOUBLE
public static final LargeArrayType STRING
public static final LargeArrayType OBJECT
public static LargeArrayType[] values()
for (LargeArrayType c : LargeArrayType.values()) System.out.println(c);
public static LargeArrayType 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 sizeOf()
public boolean isNumericType()
public boolean isIntegerNumericType()
public boolean isRealNumericType()
public boolean isComplexNumericType()
Copyright © 2015. All rights reserved.