Uses of Class
org.aksw.jena_sparql_api.views.ValueSet

Packages that use ValueSet
Package
Description
 
  • Uses of ValueSet in org.aksw.jena_sparql_api.views

    Modifier and Type
    Method
    Description
    static <T> ValueSet<T>
    ValueSet.create(boolean isPositive, T... values)
    Deprecated.
     
    ValueSet.intersect(ValueSet<T> that)
    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 union
    ValueSet.negate()
    Deprecated.
     
    ValueSet.union(ValueSet<T> that)
    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 intersection
    Methods in org.aksw.jena_sparql_api.views with parameters of type ValueSet
    Modifier and Type
    Method
    Description
    ValueSet.intersect(ValueSet<T> that)
    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 union
    ValueSet.union(ValueSet<T> that)
    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 intersection