public enum MainEntityType extends Enum<MainEntityType>
| Enum Constant and Description |
|---|
datasource |
organization |
person |
project |
result |
| Modifier and Type | Method and Description |
|---|---|
static MainEntityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MainEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MainEntityType result
public static final MainEntityType datasource
public static final MainEntityType organization
public static final MainEntityType project
public static final MainEntityType person
public static MainEntityType[] values()
for (MainEntityType c : MainEntityType.values()) System.out.println(c);
public static MainEntityType 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.