@Namespace(value="arrow::fs") public static enum arrow.FileType extends Enum<arrow.FileType>
| Enum Constant and Description |
|---|
Directory
Entry is a directory
|
File
Entry is a regular file
|
NotFound
Entry is not found
|
Unknown
Entry exists but its type is unknown
This can designate a special file such as a Unix socket or character
device, or Windows NUL / CON / ...
|
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
arrow.FileType |
intern() |
String |
toString() |
static arrow.FileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static arrow.FileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final arrow.FileType NotFound
public static final arrow.FileType Unknown
public static final arrow.FileType File
public static final arrow.FileType Directory
public static arrow.FileType[] values()
for (arrow.FileType c : arrow.FileType.values()) System.out.println(c);
public static arrow.FileType 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 nullpublic arrow.FileType intern()
public String toString()
toString in class Enum<arrow.FileType>Copyright © 2021. All rights reserved.