public enum Passphrase extends java.lang.Enum<Passphrase>
Enum Constant and Description |
---|
fourword
Четыре случайных слова
|
threeword
Три случайных слова
|
words3or4
Три или четыре случайных слова
|
Modifier and Type | Method and Description |
---|---|
static Passphrase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Passphrase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Passphrase threeword
public static final Passphrase fourword
public static final Passphrase words3or4
public static Passphrase[] values()
for (Passphrase c : Passphrase.values()) System.out.println(c);
public static Passphrase valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null