Package org.tmatesoft.svn.cli.svn
Enum SVNInfoCommand.SVNInfoItemType
- java.lang.Object
-
- java.lang.Enum<SVNInfoCommand.SVNInfoItemType>
-
- org.tmatesoft.svn.cli.svn.SVNInfoCommand.SVNInfoItemType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SVNInfoCommand.SVNInfoItemType>
- Enclosing class:
- SVNInfoCommand
private static enum SVNInfoCommand.SVNInfoItemType extends java.lang.Enum<SVNInfoCommand.SVNInfoItemType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KIND
LAST_CHANGED_AUTHOR
LAST_CHANGED_DATE
LAST_CHANGED_REV
RELATIVE_URL
REPOS_UUID
REPS_ROOT_URL
REVISION
URL
WC_ROOT
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
name
-
Constructor Summary
Constructors Modifier Constructor Description private
SVNInfoItemType(java.lang.String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SVNInfoCommand.SVNInfoItemType
forName(java.lang.String name)
java.lang.String
getName()
static SVNInfoCommand.SVNInfoItemType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SVNInfoCommand.SVNInfoItemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KIND
public static final SVNInfoCommand.SVNInfoItemType KIND
-
URL
public static final SVNInfoCommand.SVNInfoItemType URL
-
RELATIVE_URL
public static final SVNInfoCommand.SVNInfoItemType RELATIVE_URL
-
REPS_ROOT_URL
public static final SVNInfoCommand.SVNInfoItemType REPS_ROOT_URL
-
REPOS_UUID
public static final SVNInfoCommand.SVNInfoItemType REPOS_UUID
-
REVISION
public static final SVNInfoCommand.SVNInfoItemType REVISION
-
LAST_CHANGED_REV
public static final SVNInfoCommand.SVNInfoItemType LAST_CHANGED_REV
-
LAST_CHANGED_DATE
public static final SVNInfoCommand.SVNInfoItemType LAST_CHANGED_DATE
-
LAST_CHANGED_AUTHOR
public static final SVNInfoCommand.SVNInfoItemType LAST_CHANGED_AUTHOR
-
WC_ROOT
public static final SVNInfoCommand.SVNInfoItemType WC_ROOT
-
-
Method Detail
-
values
public static SVNInfoCommand.SVNInfoItemType[] 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 (SVNInfoCommand.SVNInfoItemType c : SVNInfoCommand.SVNInfoItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SVNInfoCommand.SVNInfoItemType 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
-
forName
public static SVNInfoCommand.SVNInfoItemType forName(java.lang.String name)
-
getName
public java.lang.String getName()
-
-