Enum RegistrationAttributesAttributeType
- java.lang.Object
-
- java.lang.Enum<RegistrationAttributesAttributeType>
-
- com.synopsys.integration.blackduck.api.generated.enumeration.RegistrationAttributesAttributeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RegistrationAttributesAttributeType>
public enum RegistrationAttributesAttributeType extends java.lang.Enum<RegistrationAttributesAttributeType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODE_LOCATION_BYTES_LIMITCODE_LOCATION_LIMITCODEBASE_MANAGED_LINES_OF_CODECUSTOM_PROJECT_LIMITINDEXED_LINES_OF_CODEMANAGED_CODEBASE_BYTES_NEWPROJECT_RELEASE_LIMITUSER_LIMIT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringprettyPrint()static RegistrationAttributesAttributeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RegistrationAttributesAttributeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CODEBASE_MANAGED_LINES_OF_CODE
public static final RegistrationAttributesAttributeType CODEBASE_MANAGED_LINES_OF_CODE
-
CODE_LOCATION_BYTES_LIMIT
public static final RegistrationAttributesAttributeType CODE_LOCATION_BYTES_LIMIT
-
CODE_LOCATION_LIMIT
public static final RegistrationAttributesAttributeType CODE_LOCATION_LIMIT
-
CUSTOM_PROJECT_LIMIT
public static final RegistrationAttributesAttributeType CUSTOM_PROJECT_LIMIT
-
INDEXED_LINES_OF_CODE
public static final RegistrationAttributesAttributeType INDEXED_LINES_OF_CODE
-
MANAGED_CODEBASE_BYTES_NEW
public static final RegistrationAttributesAttributeType MANAGED_CODEBASE_BYTES_NEW
-
PROJECT_RELEASE_LIMIT
public static final RegistrationAttributesAttributeType PROJECT_RELEASE_LIMIT
-
USER_LIMIT
public static final RegistrationAttributesAttributeType USER_LIMIT
-
-
Method Detail
-
values
public static RegistrationAttributesAttributeType[] 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 (RegistrationAttributesAttributeType c : RegistrationAttributesAttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegistrationAttributesAttributeType 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
-
prettyPrint
public java.lang.String prettyPrint()
-
-