public static enum IO.Seekable.SeekType extends Enum<IO.Seekable.SeekType>
| Enum Constant and Description |
|---|
FROM_BEGINNING
Set the position based on the beginning of the IO.
|
FROM_CURRENT
Set the position based on the current position of the IO.
|
FROM_END
Set the position based on the end of the IO.
|
| Modifier and Type | Method and Description |
|---|---|
static IO.Seekable.SeekType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IO.Seekable.SeekType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IO.Seekable.SeekType FROM_BEGINNING
public static final IO.Seekable.SeekType FROM_CURRENT
public static final IO.Seekable.SeekType FROM_END
public static IO.Seekable.SeekType[] values()
for (IO.Seekable.SeekType c : IO.Seekable.SeekType.values()) System.out.println(c);
public static IO.Seekable.SeekType 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 © 2019. All rights reserved.