public enum EnumApplicatorApertureShape extends java.lang.Enum<EnumApplicatorApertureShape>
| Enum Constant and Description |
|---|
SYMMETRIC_APERTURE_CIRCULAR
The circular-shaped aperture symmetrical to the central axis.
|
SYMMETRIC_APERTURE_RECTANGULAR
The rectangular-shaped aperture symmetrical to the central axis.
|
SYMMETRIC_APERTURE_SQUARE
The square-shaped aperture symmetrical to the central axis.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumApplicatorApertureShape |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumApplicatorApertureShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumApplicatorApertureShape SYMMETRIC_APERTURE_SQUARE
public static final EnumApplicatorApertureShape SYMMETRIC_APERTURE_RECTANGULAR
public static final EnumApplicatorApertureShape SYMMETRIC_APERTURE_CIRCULAR
public static EnumApplicatorApertureShape[] values()
for (EnumApplicatorApertureShape c : EnumApplicatorApertureShape.values()) System.out.println(c);
public static EnumApplicatorApertureShape 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 java.lang.String getValue()