public enum LogSkeletonRelation extends java.lang.Enum<LogSkeletonRelation>
Enum Constant and Description |
---|
NOTCOEXISTENCE |
NOTPRECEDENCE |
NOTRESPONSE |
PRECEDENCE |
RESPONSE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static LogSkeletonRelation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogSkeletonRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogSkeletonRelation RESPONSE
public static final LogSkeletonRelation PRECEDENCE
public static final LogSkeletonRelation NOTRESPONSE
public static final LogSkeletonRelation NOTPRECEDENCE
public static final LogSkeletonRelation NOTCOEXISTENCE
public static LogSkeletonRelation[] values()
for (LogSkeletonRelation c : LogSkeletonRelation.values()) System.out.println(c);
public static LogSkeletonRelation 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 toString()
toString
in class java.lang.Enum<LogSkeletonRelation>