Package com.github.javafaker
Enum Dune.Quote
- java.lang.Object
-
- java.lang.Enum<Dune.Quote>
-
- com.github.javafaker.Dune.Quote
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Dune.Quote>
- Enclosing class:
- Dune
public static enum Dune.Quote extends java.lang.Enum<Dune.Quote>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALIA
BARON_HARKONNEN
DUNCAN
EMPEROR
GUILD_NAIVGATOR
GURNEY
IRULAN
JESSICA
LETO
LIET_KYNES
MAPES
MOHIAM
PARDOT_KYNES
PAUL
PITER
STILGAR
THUFIR
YUEH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Dune.Quote
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Dune.Quote[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GUILD_NAIVGATOR
public static final Dune.Quote GUILD_NAIVGATOR
-
EMPEROR
public static final Dune.Quote EMPEROR
-
PAUL
public static final Dune.Quote PAUL
-
THUFIR
public static final Dune.Quote THUFIR
-
JESSICA
public static final Dune.Quote JESSICA
-
IRULAN
public static final Dune.Quote IRULAN
-
MOHIAM
public static final Dune.Quote MOHIAM
-
GURNEY
public static final Dune.Quote GURNEY
-
LETO
public static final Dune.Quote LETO
-
STILGAR
public static final Dune.Quote STILGAR
-
LIET_KYNES
public static final Dune.Quote LIET_KYNES
-
PARDOT_KYNES
public static final Dune.Quote PARDOT_KYNES
-
BARON_HARKONNEN
public static final Dune.Quote BARON_HARKONNEN
-
PITER
public static final Dune.Quote PITER
-
ALIA
public static final Dune.Quote ALIA
-
MAPES
public static final Dune.Quote MAPES
-
DUNCAN
public static final Dune.Quote DUNCAN
-
YUEH
public static final Dune.Quote YUEH
-
-
Method Detail
-
values
public static Dune.Quote[] 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 (Dune.Quote c : Dune.Quote.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dune.Quote 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
-
-