Uses of Class
org.geotools.api.coverage.SampleDimensionType
Packages that use SampleDimensionType
-
Uses of SampleDimensionType in org.geotools.api.coverage
Fields in org.geotools.api.coverage declared as SampleDimensionTypeModifier and TypeFieldDescriptionstatic final SampleDimensionTypeSampleDimensionType.REAL_32BITSSimple precision floating point numbers.static final SampleDimensionTypeSampleDimensionType.REAL_64BITSDouble precision floating point numbers.static final SampleDimensionTypeSampleDimensionType.SIGNED_16BITSSigned 16 bits integers.static final SampleDimensionTypeSampleDimensionType.SIGNED_32BITSSigned 32 bits integers.static final SampleDimensionTypeSampleDimensionType.SIGNED_8BITSSigned 8 bits integers.static final SampleDimensionTypeSampleDimensionType.UNSIGNED_16BITSUnsigned 16 bits integers.static final SampleDimensionTypeSampleDimensionType.UNSIGNED_1BITUnsigned 1 bit integers.static final SampleDimensionTypeSampleDimensionType.UNSIGNED_2BITSUnsigned 2 bits integers.static final SampleDimensionTypeSampleDimensionType.UNSIGNED_32BITSUnsigned 32 bits integers.static final SampleDimensionTypeSampleDimensionType.UNSIGNED_4BITSUnsigned 4 bits integers.static final SampleDimensionTypeSampleDimensionType.UNSIGNED_8BITSUnsigned 8 bits integers.Methods in org.geotools.api.coverage that return SampleDimensionTypeModifier and TypeMethodDescriptionSampleDimensionType.family()Returns the list of enumerations of the same kind than this enum.SampleDimension.getSampleDimensionType()A code value indicating grid value data type.static SampleDimensionTypeReturns the sample dimension type that matches the given string, or returns a new one if none match it.static SampleDimensionType[]SampleDimensionType.values()Returns the list ofSampleDimensionTypes. -
Uses of SampleDimensionType in org.geotools.coverage
Methods in org.geotools.coverage that return SampleDimensionTypeModifier and TypeMethodDescriptionGridSampleDimension.getSampleDimensionType()Returns a code value indicating grid value data type.static SampleDimensionTypeTypeMap.getSampleDimensionType(double min, double max) Returns the smallest sample dimension type capable to hold the specified range of values.static SampleDimensionTypeTypeMap.getSampleDimensionType(long min, long max) Returns the smallest sample dimension type capable to hold the specified range of values.static SampleDimensionTypeTypeMap.getSampleDimensionType(SampleModel model, int band) Returns the sample dimension type for the specified sample model and band number.static SampleDimensionTypeTypeMap.getSampleDimensionType(Range<?> range) Returns the smallest sample dimension type capable to hold the specified range of values.Methods in org.geotools.coverage with parameters of type SampleDimensionTypeModifier and TypeMethodDescriptionstatic intTypeMap.getDataBufferType(SampleDimensionType type) Returns theDataBuffertype.static InternationalStringTypeMap.getName(SampleDimensionType type) Returns the sample dimension type name as an international string.static NumberRange<? extends Number>TypeMap.getPositiveRange(SampleDimensionType type) Returns the range of positive sample values (excluding 0).static NumberRange<? extends Number>TypeMap.getRange(SampleDimensionType type) Returns the full range of sample values for the specified dimension type.static intTypeMap.getSize(SampleDimensionType type) Returns the size in bits.static booleanTypeMap.isFloatingPoint(SampleDimensionType type) Returnstruefor floating-point data type.static booleanTypeMap.isSigned(SampleDimensionType type) Returnstruefor signed sample type.static NumberTypeMap.wrapSample(double value, SampleDimensionType type, boolean allowWidening) Wraps the specified value into a number of the specified data type.Constructors in org.geotools.coverage with parameters of type SampleDimensionTypeModifierConstructorDescriptionGridSampleDimension(CharSequence description, SampleDimensionType type, CharSequence[] categories, double[] nodata, double minimum, double maximum, double scale, double offset, Unit<?> unit) Constructs a sample dimension with the specified properties.GridSampleDimension(CharSequence description, SampleDimensionType type, ColorInterpretation color, Color[] palette, CharSequence[] categories, double[] nodata, double minimum, double maximum, double scale, double offset, Unit<?> unit) Constructs a sample dimension with the specified properties.