Enum RuleCompilerPublisherResult.Result
- java.lang.Object
-
- java.lang.Enum<RuleCompilerPublisherResult.Result>
-
- de.hybris.platform.ruleengineservices.maintenance.RuleCompilerPublisherResult.Result
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RuleCompilerPublisherResult.Result>
- Enclosing interface:
- RuleCompilerPublisherResult
public static enum RuleCompilerPublisherResult.Result extends java.lang.Enum<RuleCompilerPublisherResult.Result>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPILER_ERRORPUBLISHER_ERRORSUCCESS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RuleCompilerPublisherResult.ResultvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RuleCompilerPublisherResult.Result[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final RuleCompilerPublisherResult.Result SUCCESS
-
COMPILER_ERROR
public static final RuleCompilerPublisherResult.Result COMPILER_ERROR
-
PUBLISHER_ERROR
public static final RuleCompilerPublisherResult.Result PUBLISHER_ERROR
-
-
Method Detail
-
values
public static RuleCompilerPublisherResult.Result[] 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 (RuleCompilerPublisherResult.Result c : RuleCompilerPublisherResult.Result.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuleCompilerPublisherResult.Result 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
-
-