Package pl.project13.core
Enum CommitIdPropertiesOutputFormat
- java.lang.Object
-
- java.lang.Enum<CommitIdPropertiesOutputFormat>
-
- pl.project13.core.CommitIdPropertiesOutputFormat
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CommitIdPropertiesOutputFormat>
public enum CommitIdPropertiesOutputFormat extends java.lang.Enum<CommitIdPropertiesOutputFormat>
An enum to indicate in what format thegenerateGitPropertiesFilenameshould be generated.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JSONIndicator to generate a json file.PROPERTIESIndicator to generate a properties file.XMLIndicator to generate a xml file.YMLIndicator to generate a yml file.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommitIdPropertiesOutputFormatvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CommitIdPropertiesOutputFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPERTIES
public static final CommitIdPropertiesOutputFormat PROPERTIES
Indicator to generate a properties file.
-
JSON
public static final CommitIdPropertiesOutputFormat JSON
Indicator to generate a json file.
-
XML
public static final CommitIdPropertiesOutputFormat XML
Indicator to generate a xml file.
-
YML
public static final CommitIdPropertiesOutputFormat YML
Indicator to generate a yml file.
-
-
Method Detail
-
values
public static CommitIdPropertiesOutputFormat[] 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 (CommitIdPropertiesOutputFormat c : CommitIdPropertiesOutputFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommitIdPropertiesOutputFormat 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
-
-