Uses of Enum Class
org.basex.query.value.type.Occ

Packages that use Occ
Package
Description
 
  • Uses of Occ in org.basex.query.value.type

    Fields in org.basex.query.value.type declared as Occ
    Modifier and Type
    Field
    Description
    final Occ
    SeqType.occ
    Occurrence indicator.
    Methods in org.basex.query.value.type that return Occ
    Modifier and Type
    Method
    Description
    Occ.add(Occ other)
    Adds two occurrence indicators.
    Occ.intersect(Occ other)
    Computes the intersection between this occurrence indicator and the given one.
    Occ.union(Occ other)
    Computes the union between this occurrence indicator and the given one.
    static Occ
    Occ.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Occ[]
    Occ.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in org.basex.query.value.type with parameters of type Occ
    Modifier and Type
    Method
    Description
    Occ.add(Occ other)
    Adds two occurrence indicators.
    void
    ExprType.assign(Occ occ)
    Assigns the specified occurrence indicator, updates the result size.
    void
    ExprType.assign(SeqType st, Occ occ, long sz)
    Assigns the specified type and result size.
    void
    ExprType.assign(Type type, Occ occ)
    Assigns the specified type and occurrence indicator, updates the result size.
    static SeqType
    SeqType.get(Type type, Occ occ)
    Returns a sequence type.
    static SeqType
    SeqType.get(Type type, Occ occ, Test test)
    Returns a sequence type.
    boolean
    Occ.instanceOf(Occ occ)
    Checks if the specified occurrence indicator is an instance of the current occurrence indicator.
    Occ.intersect(Occ other)
    Computes the intersection between this occurrence indicator and the given one.
    final SeqType
    AtomType.seqType(Occ occ)
     
    FuncType.seqType(Occ occ)
     
    ListType.seqType(Occ occ)
     
    final SeqType
    NodeType.seqType(Occ occ)
     
    Type.seqType(Occ occ)
    Internal function for creating a sequence type with the specified occurrence indicator.
    Occ.union(Occ other)
    Computes the union between this occurrence indicator and the given one.
    SeqType.union(Occ oc)
    Returns a sequence type with a new occurrence indicator.
    SeqType.with(Occ oc)
    Returns a sequence type with the specified occurrence indicator.