Enum Rule.Operation
- java.lang.Object
-
- java.lang.Enum<Rule.Operation>
-
- io.swagger.codegen.v3.ignore.rules.Rule.Operation
-
- All Implemented Interfaces:
Serializable,Comparable<Rule.Operation>,java.lang.constant.Constable
- Enclosing class:
- Rule
public static enum Rule.Operation extends Enum<Rule.Operation>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCLUDEEXCLUDE_AND_TERMINATEINCLUDENOOP
-
Method Summary
Modifier and Type Method Description static Rule.OperationvalueOf(String name)Returns the enum constant of this type with the specified name.static Rule.Operation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCLUDE
public static final Rule.Operation EXCLUDE
-
INCLUDE
public static final Rule.Operation INCLUDE
-
NOOP
public static final Rule.Operation NOOP
-
EXCLUDE_AND_TERMINATE
public static final Rule.Operation EXCLUDE_AND_TERMINATE
-
-
Method Detail
-
values
public static Rule.Operation[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Rule.Operation 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
-
-