org.d2rq.r2rml
Enum MappingComponent.ComponentType

java.lang.Object
  extended by java.lang.Enum<MappingComponent.ComponentType>
      extended by org.d2rq.r2rml.MappingComponent.ComponentType
All Implemented Interfaces:
Serializable, Comparable<MappingComponent.ComponentType>
Enclosing class:
MappingComponent

public static enum MappingComponent.ComponentType
extends Enum<MappingComponent.ComponentType>


Enum Constant Summary
BASE_TABLE_OR_VIEW
           
COLUMN_VALUED_TERM_MAP
           
CONSTANT_VALUED_TERM_MAP
           
GRAPH_MAP
           
JOIN
           
LOGICAL_TABLE
           
MAPPING
           
OBJECT_MAP
           
PREDICATE_MAP
           
PREDICATE_OBJECT_MAP
           
R2RML_VIEW
           
REF_OBJECT_MAP
           
SUBJECT_MAP
           
TEMPLATE_VALUED_TERM_MAP
           
TERM_MAP
           
TRIPLES_MAP
           
 
Method Summary
 Resource asResource()
           
 String getLabel()
           
static MappingComponent.ComponentType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MappingComponent.ComponentType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MAPPING

public static final MappingComponent.ComponentType MAPPING

TRIPLES_MAP

public static final MappingComponent.ComponentType TRIPLES_MAP

LOGICAL_TABLE

public static final MappingComponent.ComponentType LOGICAL_TABLE

BASE_TABLE_OR_VIEW

public static final MappingComponent.ComponentType BASE_TABLE_OR_VIEW

R2RML_VIEW

public static final MappingComponent.ComponentType R2RML_VIEW

TERM_MAP

public static final MappingComponent.ComponentType TERM_MAP

CONSTANT_VALUED_TERM_MAP

public static final MappingComponent.ComponentType CONSTANT_VALUED_TERM_MAP

COLUMN_VALUED_TERM_MAP

public static final MappingComponent.ComponentType COLUMN_VALUED_TERM_MAP

TEMPLATE_VALUED_TERM_MAP

public static final MappingComponent.ComponentType TEMPLATE_VALUED_TERM_MAP

SUBJECT_MAP

public static final MappingComponent.ComponentType SUBJECT_MAP

PREDICATE_MAP

public static final MappingComponent.ComponentType PREDICATE_MAP

OBJECT_MAP

public static final MappingComponent.ComponentType OBJECT_MAP

GRAPH_MAP

public static final MappingComponent.ComponentType GRAPH_MAP

PREDICATE_OBJECT_MAP

public static final MappingComponent.ComponentType PREDICATE_OBJECT_MAP

REF_OBJECT_MAP

public static final MappingComponent.ComponentType REF_OBJECT_MAP

JOIN

public static final MappingComponent.ComponentType JOIN
Method Detail

values

public static MappingComponent.ComponentType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MappingComponent.ComponentType c : MappingComponent.ComponentType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MappingComponent.ComponentType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

asResource

public Resource asResource()

getLabel

public String getLabel()