Enum PathPropertiesNotation
- java.lang.Object
-
- java.lang.Enum<PathPropertiesNotation>
-
- zone.gryphon.maven.plugins.scm.model.PathPropertiesNotation
-
- All Implemented Interfaces:
Serializable
,Comparable<PathPropertiesNotation>
public enum PathPropertiesNotation extends Enum<PathPropertiesNotation>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Collection<PathPropertiesNotation>
parseCsv(String input)
static PathPropertiesNotation
valueOf(String name)
Returns the enum constant of this type with the specified name.static PathPropertiesNotation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PathPropertiesNotation NONE
-
ARRAY
public static final PathPropertiesNotation ARRAY
-
PROPERTY
public static final PathPropertiesNotation PROPERTY
-
-
Method Detail
-
values
public static PathPropertiesNotation[] 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 (PathPropertiesNotation c : PathPropertiesNotation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathPropertiesNotation valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
parseCsv
public static Collection<PathPropertiesNotation> parseCsv(String input)
-
-