public enum InodeType extends Enum<InodeType>
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Get the integer value of this enum value.
|
static InodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InodeType File
public static final InodeType Folder
public static final InodeType RawTable
public static InodeType[] values()
for (InodeType c : InodeType.values()) System.out.println(c);
public static InodeType 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 int getValue()
Copyright © 2013. All rights reserved.