Enum LicenseInfoStatusEnum
- java.lang.Object
-
- java.lang.Enum<LicenseInfoStatusEnum>
-
- se.ayoy.maven.plugins.licenseverifier.LicenseInfo.LicenseInfoStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<LicenseInfoStatusEnum>
public enum LicenseInfoStatusEnum extends Enum<LicenseInfoStatusEnum>
Represents the statuses a license can have.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LicenseInfoStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static LicenseInfoStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALID
public static final LicenseInfoStatusEnum VALID
A valid license.
-
WARNING
public static final LicenseInfoStatusEnum WARNING
A license with some property that makes it a warning.
-
FORBIDDEN
public static final LicenseInfoStatusEnum FORBIDDEN
A license with some property that makes it forbidden to use.
-
UNKNOWN
public static final LicenseInfoStatusEnum UNKNOWN
A license which is not predefined, therefor unknown.
-
-
Method Detail
-
values
public static LicenseInfoStatusEnum[] 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 (LicenseInfoStatusEnum c : LicenseInfoStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LicenseInfoStatusEnum 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
-
-