public static enum Fileset.Type extends java.lang.Enum<Fileset.Type>
Enum Constant and Description |
---|
EXTERNAL
Fileset is not managed by Gravitino.
|
MANAGED
Fileset is managed by Gravitino.
|
Modifier and Type | Method and Description |
---|---|
static Fileset.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Fileset.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fileset.Type MANAGED
public static final Fileset.Type EXTERNAL
public static Fileset.Type[] values()
for (Fileset.Type c : Fileset.Type.values()) System.out.println(c);
public static Fileset.Type 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