public enum FilesFields extends Enum<FilesFields>
Enum Constant and Description |
---|
nameHuman |
owner |
path |
published |
type |
Modifier and Type | Method and Description |
---|---|
static FilesFields |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilesFields[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilesFields published
public static final FilesFields nameHuman
public static final FilesFields path
public static final FilesFields type
public static final FilesFields owner
public static FilesFields[] values()
for (FilesFields c : FilesFields.values()) System.out.println(c);
public static FilesFields 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 © 2017. All Rights Reserved.