public enum RatLicenseFamily extends java.lang.Enum<RatLicenseFamily>
| Enum Constant and Description |
|---|
APACHE |
CDDL1 |
DOJO |
GPL1 |
GPL2 |
GPL3 |
MIT |
OASIS |
TMF854 |
W3C |
W3C_DOCUMENTATION |
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
category |
private LicenseFamily |
licenseFamily
Constructed from other data
|
private java.lang.String |
name |
private java.lang.String |
notes |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCategory() |
java.lang.String |
getName() |
java.lang.String |
getNotes() |
LicenseFamily |
licenseFamily()
Gets a
LicenseFamily representing this data. |
static RatLicenseFamily |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RatLicenseFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RatLicenseFamily APACHE
public static final RatLicenseFamily GPL1
public static final RatLicenseFamily GPL2
public static final RatLicenseFamily GPL3
public static final RatLicenseFamily MIT
public static final RatLicenseFamily CDDL1
public static final RatLicenseFamily OASIS
public static final RatLicenseFamily TMF854
public static final RatLicenseFamily DOJO
public static final RatLicenseFamily W3C
public static final RatLicenseFamily W3C_DOCUMENTATION
private final java.lang.String name
LicenseFamily.getName()private final java.lang.String category
LicenseFamily.getCategory()private final java.lang.String notes
LicenseFamily.getNotes()private final LicenseFamily licenseFamily
public static RatLicenseFamily[] values()
for (RatLicenseFamily c : RatLicenseFamily.values()) System.out.println(c);
public static RatLicenseFamily valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()
LicenseFamily.getName()public java.lang.String getCategory()
LicenseFamily.getCategory()public java.lang.String getNotes()
LicenseFamily.getNotes()public LicenseFamily licenseFamily()
LicenseFamily representing this data.