public static enum Restriction.Type extends Enum<Restriction.Type>
| Enum Constant and Description |
|---|
IDENTIFIER |
SUMMARY |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
static Restriction.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Restriction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Restriction.Type IDENTIFIER
public static final Restriction.Type TITLE
public static final Restriction.Type SUMMARY
public static Restriction.Type[] values()
for (Restriction.Type c : Restriction.Type.values()) System.out.println(c);
public static Restriction.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.