Enum DrawType
- java.lang.Object
-
- java.lang.Enum<DrawType>
-
- patterntesting.runtime.log.internal.DrawType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTOR
The actor.CREATE_MESSAGE
The create message.MESSAGE
The message.OBJECT
The object.PLACEHOLDER_OBJECT
The place holder.RETURN_MESSAGE
The return message.UNKNOWN
The unknown.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DrawType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DrawType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final DrawType UNKNOWN
The unknown.
-
ACTOR
public static final DrawType ACTOR
The actor.
-
OBJECT
public static final DrawType OBJECT
The object.
-
PLACEHOLDER_OBJECT
public static final DrawType PLACEHOLDER_OBJECT
The place holder.
-
CREATE_MESSAGE
public static final DrawType CREATE_MESSAGE
The create message.
-
MESSAGE
public static final DrawType MESSAGE
The message.
-
RETURN_MESSAGE
public static final DrawType RETURN_MESSAGE
The return message.
-
-
Method Detail
-
values
public static DrawType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DrawType c : DrawType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DrawType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-