Class BitKey.Factory

java.lang.Object
mondrian.rolap.BitKey.Factory
Enclosing interface:
BitKey

public abstract static class BitKey.Factory extends Object
  • Constructor Details

    • Factory

      public Factory()
  • Method Details

    • makeBitKey

      public static BitKey makeBitKey(int size)
      Creates a BitKey with a capacity for a given number of bits.
      Parameters:
      size - Number of bits in key
    • makeBitKey

      public static BitKey makeBitKey(int size, boolean init)
      Creates a BitKey with a capacity for a given number of bits.
      Parameters:
      size - Number of bits in key
      init - The default value of all bits.
    • makeBitKey

      public static BitKey makeBitKey(BitSet bitSet)
      Creates a BitKey with the same contents as a BitSet.