public enum FileContent extends java.lang.Enum<FileContent>
Enum Constant and Description |
---|
DATA |
EQUALITY_DELETES |
POSITION_DELETES |
Modifier and Type | Method and Description |
---|---|
int |
id() |
static FileContent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileContent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileContent DATA
public static final FileContent POSITION_DELETES
public static final FileContent EQUALITY_DELETES
public static FileContent[] values()
for (FileContent c : FileContent.values()) System.out.println(c);
public static FileContent 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 nullpublic int id()