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