java.io.Serializable, java.lang.Comparable<Door.Hinge>public static enum Door.Hinge extends java.lang.Enum<Door.Hinge>
| Enum Constant | Description |
|---|---|
LEFT |
Door is attached to the left side.
|
RIGHT |
Door is attached to the right side.
|
| Modifier and Type | Method | Description |
|---|---|---|
static Door.Hinge |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Door.Hinge[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Door.Hinge LEFT
public static final Door.Hinge RIGHT
public static Door.Hinge[] values()
for (Door.Hinge c : Door.Hinge.values()) System.out.println(c);
public static Door.Hinge 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 nullCopyright © 2018. All rights reserved.