public enum OwlFileSource extends Enum<OwlFileSource>
| Enum Constant and Description |
|---|
CLASS_PATH
The OWL files are loaded from the class path.
|
DIRECTORY
The OWL files are loaded from a directory.
|
| Modifier and Type | Method and Description |
|---|---|
static OwlFileSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OwlFileSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwlFileSource CLASS_PATH
public static final OwlFileSource DIRECTORY
public static OwlFileSource[] values()
for (OwlFileSource c : OwlFileSource.values()) System.out.println(c);
public static OwlFileSource 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.