public static enum Bond.MultiLoopRole extends java.lang.Enum<Bond.MultiLoopRole>
Enum Constant and Description |
---|
Entrance
This bond is the "entrance" to a multi-branch loop.
|
Exit
This bond is one of the "exits" out of a multi-branch loop.
|
None
This bond is an internal one.
|
Unknown
The role of this bond could not be determined with the provided information.
|
Modifier and Type | Method and Description |
---|---|
static Bond.MultiLoopRole |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Bond.MultiLoopRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bond.MultiLoopRole Entrance
public static final Bond.MultiLoopRole Exit
public static final Bond.MultiLoopRole None
public static final Bond.MultiLoopRole Unknown
public static Bond.MultiLoopRole 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 static Bond.MultiLoopRole[] values()
for (Bond.MultiLoopRole c : Bond.MultiLoopRole.values()) System.out.println(c);