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