Package com.google.gag.enumeration
Enum ChannelingEntity
- java.lang.Object
-
- java.lang.Enum<ChannelingEntity>
-
- com.google.gag.enumeration.ChannelingEntity
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ChannelingEntity>
@Visionary("Mike Samuel") public enum ChannelingEntity extends java.lang.Enum<ChannelingEntity>
Channeling entities.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALTERNATE_REALITY_SELFARMY_OF_NANOBOTSEX_HUMANFUTURE_SELFINTERNLIZARD_PERSONOLD_ONESPIRITUNSPECIFIED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChannelingEntityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ChannelingEntity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALTERNATE_REALITY_SELF
public static final ChannelingEntity ALTERNATE_REALITY_SELF
-
ARMY_OF_NANOBOTS
public static final ChannelingEntity ARMY_OF_NANOBOTS
-
FUTURE_SELF
public static final ChannelingEntity FUTURE_SELF
-
EX_HUMAN
public static final ChannelingEntity EX_HUMAN
-
INTERN
public static final ChannelingEntity INTERN
-
LIZARD_PERSON
public static final ChannelingEntity LIZARD_PERSON
-
OLD_ONE
public static final ChannelingEntity OLD_ONE
-
SPIRIT
public static final ChannelingEntity SPIRIT
-
UNSPECIFIED
public static final ChannelingEntity UNSPECIFIED
-
-
Method Detail
-
values
public static ChannelingEntity[] 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 (ChannelingEntity c : ChannelingEntity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChannelingEntity 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
-
-