Enum StructureFields.PristineInfo
- java.lang.Object
-
- java.lang.Enum<StructureFields.PristineInfo>
-
- org.tmatesoft.svn.core.internal.wc17.db.StructureFields.PristineInfo
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StructureFields.PristineInfo>
,Structure.TypeSafety
- Enclosing class:
- StructureFields
public static enum StructureFields.PristineInfo extends java.lang.Enum<StructureFields.PristineInfo> implements Structure.TypeSafety
-
-
Enum Constant Summary
Enum Constants Enum Constant Description changed_author
changed_date
changed_rev
checksum
depth
hadProps
kind
props
status
target
-
Field Summary
Fields Modifier and Type Field Description static java.util.Collection<StructureFields.PristineInfo>
all
static java.util.Collection<StructureFields.PristineInfo>
defaults
private java.lang.Class<?>
valueType
-
Constructor Summary
Constructors Modifier Constructor Description private
PristineInfo(java.lang.Class<?> valueType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>
getType()
static StructureFields.PristineInfo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StructureFields.PristineInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
status
public static final StructureFields.PristineInfo status
-
kind
public static final StructureFields.PristineInfo kind
-
changed_rev
public static final StructureFields.PristineInfo changed_rev
-
changed_author
public static final StructureFields.PristineInfo changed_author
-
changed_date
public static final StructureFields.PristineInfo changed_date
-
depth
public static final StructureFields.PristineInfo depth
-
checksum
public static final StructureFields.PristineInfo checksum
-
target
public static final StructureFields.PristineInfo target
-
hadProps
public static final StructureFields.PristineInfo hadProps
-
props
public static final StructureFields.PristineInfo props
-
-
Field Detail
-
all
public static final java.util.Collection<StructureFields.PristineInfo> all
-
defaults
public static final java.util.Collection<StructureFields.PristineInfo> defaults
-
valueType
private java.lang.Class<?> valueType
-
-
Method Detail
-
values
public static StructureFields.PristineInfo[] 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 (StructureFields.PristineInfo c : StructureFields.PristineInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StructureFields.PristineInfo 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
-
getType
public java.lang.Class<?> getType()
- Specified by:
getType
in interfaceStructure.TypeSafety
-
-