public enum ArrayElementType extends Enum<ArrayElementType>
| Enum Constant and Description |
|---|
BYTE |
CHAR |
DOUBLE |
FLOAT |
INT |
LONG |
OBJECT |
SHORT |
| Modifier and Type | Method and Description |
|---|---|
static ArrayElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrayElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayElementType CHAR
public static final ArrayElementType BYTE
public static final ArrayElementType SHORT
public static final ArrayElementType INT
public static final ArrayElementType LONG
public static final ArrayElementType FLOAT
public static final ArrayElementType DOUBLE
public static final ArrayElementType OBJECT
public static ArrayElementType[] values()
for (ArrayElementType c : ArrayElementType.values()) System.out.println(c);
public static ArrayElementType 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 nullCopyright © 2015. All rights reserved.