Enum RulesetInfoDTO.RuleTypeEnum
- java.lang.Object
-
- java.lang.Enum<RulesetInfoDTO.RuleTypeEnum>
-
- org.wso2.am.integration.clients.governance.api.dto.RulesetInfoDTO.RuleTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<RulesetInfoDTO.RuleTypeEnum>
- Enclosing class:
- RulesetInfoDTO
public static enum RulesetInfoDTO.RuleTypeEnum extends Enum<RulesetInfoDTO.RuleTypeEnum>
Context or area to which the ruleset applies.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRulesetInfoDTO.RuleTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description API_DEFINITIONAPI_DOCUMENTATIONAPI_METADATA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RulesetInfoDTO.RuleTypeEnumfromValue(String value)StringgetValue()StringtoString()static RulesetInfoDTO.RuleTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static RulesetInfoDTO.RuleTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
API_METADATA
public static final RulesetInfoDTO.RuleTypeEnum API_METADATA
-
API_DEFINITION
public static final RulesetInfoDTO.RuleTypeEnum API_DEFINITION
-
API_DOCUMENTATION
public static final RulesetInfoDTO.RuleTypeEnum API_DOCUMENTATION
-
-
Method Detail
-
values
public static RulesetInfoDTO.RuleTypeEnum[] 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 (RulesetInfoDTO.RuleTypeEnum c : RulesetInfoDTO.RuleTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RulesetInfoDTO.RuleTypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<RulesetInfoDTO.RuleTypeEnum>
-
fromValue
public static RulesetInfoDTO.RuleTypeEnum fromValue(String value)
-
-