Package org.apache.subversion.javahl
Enum ReposNotifyInformation.NodeAction
- java.lang.Object
-
- java.lang.Enum<ReposNotifyInformation.NodeAction>
-
- org.apache.subversion.javahl.ReposNotifyInformation.NodeAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ReposNotifyInformation.NodeAction>
- Enclosing class:
- ReposNotifyInformation
public static enum ReposNotifyInformation.NodeAction extends java.lang.Enum<ReposNotifyInformation.NodeAction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReposNotifyInformation.NodeAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReposNotifyInformation.NodeAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
change
public static final ReposNotifyInformation.NodeAction change
-
add
public static final ReposNotifyInformation.NodeAction add
-
deleted
public static final ReposNotifyInformation.NodeAction deleted
-
replace
public static final ReposNotifyInformation.NodeAction replace
-
-
Method Detail
-
values
public static ReposNotifyInformation.NodeAction[] 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 (ReposNotifyInformation.NodeAction c : ReposNotifyInformation.NodeAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReposNotifyInformation.NodeAction 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
-
-