Package com.google.gag.enumeration
Enum Source
- java.lang.Object
-
- java.lang.Enum<Source>
-
- com.google.gag.enumeration.Source
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SourcevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Source[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A_SPACE_ODYSSEY
public static final Source A_SPACE_ODYSSEY
-
BATMAN
public static final Source BATMAN
-
BLADE_RUNNER
public static final Source BLADE_RUNNER
-
BRAZIL
public static final Source BRAZIL
-
BSG
public static final Source BSG
-
CTRL_ALT_DEL
public static final Source CTRL_ALT_DEL
-
CYANIDE_AND_HAPPINESS
public static final Source CYANIDE_AND_HAPPINESS
-
DILBERT
public static final Source DILBERT
-
DR_STRANGELOVE
public static final Source DR_STRANGELOVE
-
HHGTTG
public static final Source HHGTTG
-
HIJINKS_ENSUE
public static final Source HIJINKS_ENSUE
-
LOTR
public static final Source LOTR
-
MC_FRONTALOT
public static final Source MC_FRONTALOT
-
MONTY_PYTHON
public static final Source MONTY_PYTHON
-
MUNCHKINS
public static final Source MUNCHKINS
-
OFFICE_SPACE
public static final Source OFFICE_SPACE
-
PENNY_ARCADE
public static final Source PENNY_ARCADE
-
PRINCESS_BRIDE
public static final Source PRINCESS_BRIDE
-
QUESTIONABLE_CONTENT
public static final Source QUESTIONABLE_CONTENT
-
STARCRAFT
public static final Source STARCRAFT
-
STARGATE
public static final Source STARGATE
-
STAR_TREK
public static final Source STAR_TREK
-
STAR_TREK_TNG
public static final Source STAR_TREK_TNG
-
STAR_WARS
public static final Source STAR_WARS
-
THE_MATRIX
public static final Source THE_MATRIX
-
TRON
public static final Source TRON
-
USER_FRIENDLY
public static final Source USER_FRIENDLY
-
WE_THE_ROBOTS
public static final Source WE_THE_ROBOTS
-
XKCD
public static final Source XKCD
-
ZOMBIELAND
public static final Source ZOMBIELAND
-
OTHER
public static final Source OTHER
-
-
Method Detail
-
values
public static Source[] 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 (Source c : Source.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Source 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
-
-