public enum RackMountLocation extends Enum<RackMountLocation>
| Enum Constant and Description |
|---|
CenterBack |
CenterFront |
Left |
Right |
| Modifier and Type | Method and Description |
|---|---|
static RackMountLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RackMountLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RackMountLocation CenterBack
public static final RackMountLocation CenterFront
public static final RackMountLocation Left
public static final RackMountLocation Right
public static RackMountLocation[] values()
for (RackMountLocation c : RackMountLocation.values()) System.out.println(c);
public static RackMountLocation 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 © 2017. All rights reserved.