public enum NameResolverStrategy extends java.lang.Enum<NameResolverStrategy>
Enum Constant and Description |
---|
ADAPTIVE
if the first n names are URIs(NAMEs) all names are assumed to be URIs (NAMEs), otherwise we have to CHECK
|
CHECK
for every concept/role name in KRSS we have to check whether it is an URI or NAME.
|
IRI
every found concept/role name in KRSS is an absolute IRI
|
NAME
concept/roles names in KRSS are all names, URI must be created (namespace of the ontology's URI)
|
Modifier and Type | Method and Description |
---|---|
static NameResolverStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NameResolverStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NameResolverStrategy ADAPTIVE
public static final NameResolverStrategy IRI
public static final NameResolverStrategy NAME
public static final NameResolverStrategy CHECK
public static NameResolverStrategy[] values()
for (NameResolverStrategy c : NameResolverStrategy.values()) System.out.println(c);
public static NameResolverStrategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null