public enum OwlEntityType extends Enum<OwlEntityType>
| Enum Constant and Description |
|---|
ANNOTATION_VALUE |
ANNOTIATION_PROPERTY |
CLASS |
DATA_PROPERTY |
INDIVIDUAL |
OBJECT_PROPERTY |
| Modifier and Type | Method and Description |
|---|---|
static OwlEntityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OwlEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwlEntityType ANNOTATION_VALUE
public static final OwlEntityType ANNOTIATION_PROPERTY
public static final OwlEntityType CLASS
public static final OwlEntityType DATA_PROPERTY
public static final OwlEntityType INDIVIDUAL
public static final OwlEntityType OBJECT_PROPERTY
public static OwlEntityType[] values()
for (OwlEntityType c : OwlEntityType.values()) System.out.println(c);
public static OwlEntityType 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 © 2020 Jens Pelzetter. All rights reserved.