public static enum ScpEntry.Type extends java.lang.Enum<ScpEntry.Type>
| Enum Constant and Description |
|---|
DIRECTORY |
END_OF_DIRECTORY |
FILE |
| Modifier and Type | Method and Description |
|---|---|
static ScpEntry.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScpEntry.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScpEntry.Type FILE
public static final ScpEntry.Type DIRECTORY
public static final ScpEntry.Type END_OF_DIRECTORY
public static ScpEntry.Type[] values()
for (ScpEntry.Type c : ScpEntry.Type.values()) System.out.println(c);
public static ScpEntry.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 nullCopyright © 2018 pastdev.com. All Rights Reserved.