public enum TypeOfMemory extends Enum<TypeOfMemory>
Modifier and Type | Method and Description |
---|---|
static TypeOfMemory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeOfMemory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeOfMemory SM
public static final TypeOfMemory ME
public static final TypeOfMemory MT
public static final TypeOfMemory BM
public static final TypeOfMemory SR
public static final TypeOfMemory TA
public static TypeOfMemory[] values()
for (TypeOfMemory c : TypeOfMemory.values()) System.out.println(c);
public static TypeOfMemory 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–2016 jSMS4Pi. All rights reserved.