Uses of Class
org.aksw.jena_sparql_api.views.ValueSet
Packages that use ValueSet
-
Uses of ValueSet in org.aksw.jena_sparql_api.views
Methods in org.aksw.jena_sparql_api.views that return ValueSetModifier and TypeMethodDescriptionstatic <T> ValueSet<T>ValueSet.create(boolean isPositive, T... values) Deprecated.Deprecated.case: positive - positive Simply take the intersection case: positive - negative {1, 2, 3} intersect {not {2}}: -> {1, 3} (positive.removeAll(negative)) case: negative - positive Same as above case: negative - negative Simply take the unionValueSet.negate()Deprecated.Deprecated.case: positive - positive Simply take the union case: positive - negative {1, 2, 3} intersect {not {1, 4}}: -> {4} (negative.removeAll(positive)) case: negative - positive Same as above case: negative - negative Simply take the intersectionMethods in org.aksw.jena_sparql_api.views with parameters of type ValueSetModifier and TypeMethodDescriptionDeprecated.case: positive - positive Simply take the intersection case: positive - negative {1, 2, 3} intersect {not {2}}: -> {1, 3} (positive.removeAll(negative)) case: negative - positive Same as above case: negative - negative Simply take the unionDeprecated.case: positive - positive Simply take the union case: positive - negative {1, 2, 3} intersect {not {1, 4}}: -> {4} (negative.removeAll(positive)) case: negative - positive Same as above case: negative - negative Simply take the intersection