Enum FSP2LProtoIndex.ItemType
- java.lang.Object
-
- java.lang.Enum<FSP2LProtoIndex.ItemType>
-
- org.tmatesoft.svn.core.internal.io.fs.index.FSP2LProtoIndex.ItemType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FSP2LProtoIndex.ItemType>
- Enclosing class:
- FSP2LProtoIndex
public static enum FSP2LProtoIndex.ItemType extends java.lang.Enum<FSP2LProtoIndex.ItemType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FSP2LProtoIndex.ItemType
fromCode(int code)
int
getCode()
static FSP2LProtoIndex.ItemType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FSP2LProtoIndex.ItemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNUSED
public static final FSP2LProtoIndex.ItemType UNUSED
-
FILE_REP
public static final FSP2LProtoIndex.ItemType FILE_REP
-
DIR_REP
public static final FSP2LProtoIndex.ItemType DIR_REP
-
FILE_PROPS
public static final FSP2LProtoIndex.ItemType FILE_PROPS
-
DIR_PROPS
public static final FSP2LProtoIndex.ItemType DIR_PROPS
-
NODEREV
public static final FSP2LProtoIndex.ItemType NODEREV
-
CHANGES
public static final FSP2LProtoIndex.ItemType CHANGES
-
-
Method Detail
-
values
public static FSP2LProtoIndex.ItemType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FSP2LProtoIndex.ItemType c : FSP2LProtoIndex.ItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FSP2LProtoIndex.ItemType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromCode
public static FSP2LProtoIndex.ItemType fromCode(int code)
-
getCode
public int getCode()
-
-