Package com.github.javafaker
Enum Dune.Saying
- java.lang.Object
-
- java.lang.Enum<Dune.Saying>
-
- com.github.javafaker.Dune.Saying
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Dune.Saying>
- Enclosing class:
- Dune
public static enum Dune.Saying extends java.lang.Enum<Dune.Saying>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BENE_GESSERITFREMENMENTATMUADDIBORANGE_CATHOLIC_BIBLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Dune.SayingvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Dune.Saying[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BENE_GESSERIT
public static final Dune.Saying BENE_GESSERIT
-
FREMEN
public static final Dune.Saying FREMEN
-
MENTAT
public static final Dune.Saying MENTAT
-
MUADDIB
public static final Dune.Saying MUADDIB
-
ORANGE_CATHOLIC_BIBLE
public static final Dune.Saying ORANGE_CATHOLIC_BIBLE
-
-
Method Detail
-
values
public static Dune.Saying[] 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.Saying c : Dune.Saying.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.Saying 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
-
-