public enum OwlModel extends Enum<OwlModel>
| Enum Constant and Description |
|---|
OBJECT |
OBJECT_PROPERTY |
SUBJECT |
SUBJECT_PROPERTY |
THING |
| Modifier and Type | Method and Description |
|---|---|
String |
owlname() |
static OwlModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OwlModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwlModel THING
public static final OwlModel OBJECT_PROPERTY
public static final OwlModel SUBJECT_PROPERTY
public static final OwlModel SUBJECT
public static final OwlModel OBJECT
public static OwlModel[] values()
for (OwlModel c : OwlModel.values()) System.out.println(c);
public static OwlModel 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 String owlname()
Copyright © 2016. All rights reserved.