public static enum Publish.UncertaintyType extends Enum<Publish.UncertaintyType>
| Enum Constant and Description |
|---|
None |
Qualitative |
Quantitative |
| Modifier and Type | Method and Description |
|---|---|
static Publish.UncertaintyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Publish.UncertaintyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Publish.UncertaintyType None
public static final Publish.UncertaintyType Quantitative
public static final Publish.UncertaintyType Qualitative
public static Publish.UncertaintyType[] values()
for (Publish.UncertaintyType c : Publish.UncertaintyType.values()) System.out.println(c);
public static Publish.UncertaintyType 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 © 2022. All rights reserved.