public static enum IoFile.Whence extends Enum<IoFile.Whence>
| Enum Constant and Description |
|---|
BEGINNING |
CURRENT_POSITION |
END |
| Modifier and Type | Method and Description |
|---|---|
static IoFile.Whence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IoFile.Whence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IoFile.Whence BEGINNING
public static final IoFile.Whence CURRENT_POSITION
public static final IoFile.Whence END
public static IoFile.Whence[] values()
for (IoFile.Whence c : IoFile.Whence.values()) System.out.println(c);
public static IoFile.Whence 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 © 2016–2017. All rights reserved.