public static enum ProductInfoTag.Edition extends Enum<ProductInfoTag.Edition>
| Enum Constant and Description |
|---|
DEVELOPER |
EDUCATIONAL |
FULL_COMMERCIAL |
NFR |
NON_COMMERCIAL |
NONE |
TRIAL |
| Modifier and Type | Method and Description |
|---|---|
static ProductInfoTag.Edition |
fromCode(int code) |
int |
getCode() |
String |
getName() |
static ProductInfoTag.Edition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProductInfoTag.Edition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductInfoTag.Edition DEVELOPER
public static final ProductInfoTag.Edition FULL_COMMERCIAL
public static final ProductInfoTag.Edition NON_COMMERCIAL
public static final ProductInfoTag.Edition EDUCATIONAL
public static final ProductInfoTag.Edition NFR
public static final ProductInfoTag.Edition TRIAL
public static final ProductInfoTag.Edition NONE
public static ProductInfoTag.Edition[] values()
for (ProductInfoTag.Edition c : ProductInfoTag.Edition.values()) System.out.println(c);
public static ProductInfoTag.Edition 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 nullpublic static ProductInfoTag.Edition fromCode(int code)
public int getCode()
public String getName()
Copyright © 2023 The Apache Software Foundation. All rights reserved.