public enum RestrictionCode extends Enum<RestrictionCode>
| Enum Constant and Description |
|---|
COPYRIGHT |
INTELLECTUAL_PROPERTY_RIGHTS |
LICENSE |
OTHER_RESTRICTIONS |
PATENT |
PATENT_PENDING |
RESTRICTED |
TRADEMARK |
| Modifier and Type | Method and Description |
|---|---|
static RestrictionCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestrictionCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestrictionCode COPYRIGHT
public static final RestrictionCode PATENT
public static final RestrictionCode PATENT_PENDING
public static final RestrictionCode TRADEMARK
public static final RestrictionCode LICENSE
public static final RestrictionCode INTELLECTUAL_PROPERTY_RIGHTS
public static final RestrictionCode RESTRICTED
public static final RestrictionCode OTHER_RESTRICTIONS
public static RestrictionCode[] values()
for (RestrictionCode c : RestrictionCode.values()) System.out.println(c);
public static RestrictionCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All Rights Reserved.