public static enum Schema.RequiredMode extends Enum<Schema.RequiredMode>
| Enum Constant and Description |
|---|
AUTO |
NOT_REQUIRED |
REQUIRED |
| Modifier and Type | Method and Description |
|---|---|
static Schema.RequiredMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Schema.RequiredMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schema.RequiredMode AUTO
public static final Schema.RequiredMode REQUIRED
public static final Schema.RequiredMode NOT_REQUIRED
public static Schema.RequiredMode[] values()
for (Schema.RequiredMode c : Schema.RequiredMode.values()) System.out.println(c);
public static Schema.RequiredMode 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 © 2022. All rights reserved.