public enum HdfsFileAttributes extends Enum<HdfsFileAttributes>
Enum Constant and Description |
---|
BLOCK_SIZE
Block size.
|
GROUP
Group.
|
LAST_ACCESS_TIME
Last access time.
|
LENGTH
Length.
|
MODIFICATION_TIME
Modification time.
|
OWNER
Owner.
|
PERMISSIONS
Permissions.
|
Modifier and Type | Method and Description |
---|---|
static HdfsFileAttributes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HdfsFileAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HdfsFileAttributes LAST_ACCESS_TIME
public static final HdfsFileAttributes BLOCK_SIZE
public static final HdfsFileAttributes GROUP
public static final HdfsFileAttributes OWNER
public static final HdfsFileAttributes PERMISSIONS
public static final HdfsFileAttributes LENGTH
public static final HdfsFileAttributes MODIFICATION_TIME
public static HdfsFileAttributes[] values()
for (HdfsFileAttributes c : HdfsFileAttributes.values()) System.out.println(c);
public static HdfsFileAttributes 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 © 2002–2020 The Apache Software Foundation. All rights reserved.