public enum LaserType extends Enum<LaserType> implements Enumeration
Enum Constant and Description |
---|
DYE |
EXCIMER |
FREEELECTRON |
GAS |
METALVAPOR |
OTHER |
SEMICONDUCTOR |
SOLIDSTATE |
Modifier and Type | Method and Description |
---|---|
static LaserType |
fromString(String value) |
String |
getValue() |
String |
toString() |
static LaserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LaserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaserType EXCIMER
public static final LaserType GAS
public static final LaserType METALVAPOR
public static final LaserType SOLIDSTATE
public static final LaserType DYE
public static final LaserType SEMICONDUCTOR
public static final LaserType FREEELECTRON
public static final LaserType OTHER
public static LaserType[] values()
for (LaserType c : LaserType.values()) System.out.println(c);
public static LaserType 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 static LaserType fromString(String value) throws EnumerationException
EnumerationException
public String getValue()
Copyright © 2014 Open Microscopy Environment