1 31 32 package com.hp.hpl.jena.rdf.model.impl; 33 34 import com.hp.hpl.jena.rdf.model.*; 35 36 62 63 public final class SelectorImpl extends SimpleSelector { 64 65 68 public SelectorImpl() { 69 super(); 70 } 71 72 84 public SelectorImpl(Resource subject, Property predicate, RDFNode object) { 85 super( subject, predicate, object ); 86 } 87 88 100 public SelectorImpl(Resource subject, Property predicate, boolean object) { 101 this(subject, predicate, String.valueOf( object ) ); 102 } 103 104 116 public SelectorImpl(Resource subject, Property predicate, long object) { 117 this(subject, predicate, String.valueOf( object ) ); 118 } 119 120 132 public SelectorImpl(Resource subject, Property predicate, char object) { 133 this(subject, predicate, String.valueOf( object ) ); 134 } 135 136 148 public SelectorImpl(Resource subject, Property predicate, float object) { 149 this(subject, predicate, String.valueOf( object ) ); 150 } 151 152 164 public SelectorImpl(Resource subject, Property predicate, double object) { 165 this(subject, predicate, String.valueOf( object ) ); 166 } 167 168 180 public SelectorImpl(Resource subject, Property predicate, String object) { 181 this( subject, predicate, object, "" ); 182 } 183 184 197 public SelectorImpl(Resource subject, Property predicate, 198 String object, String language) { 199 super( subject, predicate, object, language ); 200 } 201 202 214 public SelectorImpl(Resource subject, Property predicate, Object object) { 215 super( subject, predicate, object ); 216 } 217 218 222 public boolean isSimple() 223 { return true; } 224 225 } | Popular Tags |