725726727728729730731732733734735
max = 3; } else if (st.compareTo(SampleDimensionType.UNSIGNED_4BITS) == 0) { max = 7; } else if (st.compareTo(SampleDimensionType.UNSIGNED_8BITS) == 0) { max = 255; } else if (st.compareTo(SampleDimensionType.UNSIGNED_16BITS) == 0) { max = 65535; }
728729730731732733734735736737738
max = 7; } else if (st.compareTo(SampleDimensionType.UNSIGNED_8BITS) == 0) { max = 255; } else if (st.compareTo(SampleDimensionType.UNSIGNED_16BITS) == 0) { max = 65535; } else if (st.compareTo(SampleDimensionType.UNSIGNED_32BITS) == 0) { max = Math.pow( 2,
731732733734735736737738739740741
max = 255; } else if (st.compareTo(SampleDimensionType.UNSIGNED_16BITS) == 0) { max = 65535; } else if (st.compareTo(SampleDimensionType.UNSIGNED_32BITS) == 0) { max = Math.pow( 2, 32) - 1; }