public static enum GenericData.Flags extends Enum<GenericData.Flags>
Enum Constant and Description |
---|
IGNORE_CASE
Whether keys are case sensitive.
|
Modifier and Type | Method and Description |
---|---|
static GenericData.Flags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericData.Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericData.Flags IGNORE_CASE
public static GenericData.Flags[] values()
for (GenericData.Flags c : GenericData.Flags.values()) System.out.println(c);
public static GenericData.Flags 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 © 2011–2022 Google. All rights reserved.