Class BitSet4D


  • public class BitSet4D
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      BitSet4D​(int sizeX, int sizeY, int sizeZ, int sizeW)  
      BitSet4D​(java.nio.ByteBuffer buffer, int sizeX, int sizeY, int sizeZ, int sizeW)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean get​(int index)  
      boolean get​(int x, int y, int z, int w)  
      int getIndex​(int x, int y, int z, int w)  
      void set​(int x, int y, int z, int flag, boolean value)  
      void setAll​(boolean value)  
      void write​(java.nio.ByteBuffer buffer)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BitSet4D

        public BitSet4D​(int sizeX,
                        int sizeY,
                        int sizeZ,
                        int sizeW)
      • BitSet4D

        public BitSet4D​(java.nio.ByteBuffer buffer,
                        int sizeX,
                        int sizeY,
                        int sizeZ,
                        int sizeW)
    • Method Detail

      • write

        public void write​(java.nio.ByteBuffer buffer)
      • get

        public boolean get​(int index)
      • get

        public boolean get​(int x,
                           int y,
                           int z,
                           int w)
      • set

        public void set​(int x,
                        int y,
                        int z,
                        int flag,
                        boolean value)
      • setAll

        public void setAll​(boolean value)
      • getIndex

        public int getIndex​(int x,
                            int y,
                            int z,
                            int w)