Enum PolicyRuleConditionType
- java.lang.Object
-
- java.lang.Enum<PolicyRuleConditionType>
-
- com.synopsys.integration.blackduck.api.enumeration.PolicyRuleConditionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PolicyRuleConditionType>
public enum PolicyRuleConditionType extends java.lang.Enum<PolicyRuleConditionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDisplayValue()PolicyRuleCategoryTypegetPolicyRuleCategory()static PolicyRuleConditionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PolicyRuleConditionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROJECT_NAME
public static final PolicyRuleConditionType PROJECT_NAME
-
PROJECT_TAGS
public static final PolicyRuleConditionType PROJECT_TAGS
-
PROJECT_TIER
public static final PolicyRuleConditionType PROJECT_TIER
-
VERSION_PHASE
public static final PolicyRuleConditionType VERSION_PHASE
-
VERSION_DISTRIBUTION
public static final PolicyRuleConditionType VERSION_DISTRIBUTION
-
SINGLE_VERSION
public static final PolicyRuleConditionType SINGLE_VERSION
-
COMPONENT_USAGE
public static final PolicyRuleConditionType COMPONENT_USAGE
-
REVIEW_STATUS
public static final PolicyRuleConditionType REVIEW_STATUS
-
LICENSE_FAMILY
public static final PolicyRuleConditionType LICENSE_FAMILY
-
SINGLE_LICENSE
public static final PolicyRuleConditionType SINGLE_LICENSE
-
RELEASE_DATE
public static final PolicyRuleConditionType RELEASE_DATE
-
NEWER_VERSIONS_COUNT
public static final PolicyRuleConditionType NEWER_VERSIONS_COUNT
-
HIGH_SEVERITY_VULN_COUNT
public static final PolicyRuleConditionType HIGH_SEVERITY_VULN_COUNT
-
MEDIUM_SEVERITY_VULN_COUNT
public static final PolicyRuleConditionType MEDIUM_SEVERITY_VULN_COUNT
-
LOW_SEVERITY_VULN_COUNT
public static final PolicyRuleConditionType LOW_SEVERITY_VULN_COUNT
-
UNKNOWN_RULE_CONDTION
public static final PolicyRuleConditionType UNKNOWN_RULE_CONDTION
-
-
Method Detail
-
values
public static PolicyRuleConditionType[] 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 (PolicyRuleConditionType c : PolicyRuleConditionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PolicyRuleConditionType 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
-
getPolicyRuleCategory
public PolicyRuleCategoryType getPolicyRuleCategory()
-
getDisplayValue
public java.lang.String getDisplayValue()
-
-