Uses of Class
org.xerial.snappy.BitShuffleType
-
Packages that use BitShuffleType Package Description org.xerial.snappy Snappy API for compressing/decompressing data. -
-
Uses of BitShuffleType in org.xerial.snappy
Methods in org.xerial.snappy that return BitShuffleType Modifier and Type Method Description static BitShuffleType
BitShuffleType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BitShuffleType[]
BitShuffleType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.xerial.snappy with parameters of type BitShuffleType Modifier and Type Method Description static int
BitShuffle. shuffle(java.nio.ByteBuffer input, BitShuffleType type, java.nio.ByteBuffer shuffled)
Apply a bit-shuffling filter into the content in the given input buffer.static int
BitShuffle. unshuffle(java.nio.ByteBuffer shuffled, BitShuffleType type, java.nio.ByteBuffer output)
Convert the input bit-shuffled byte array into an original array.
-