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