Method and Description |
---|
org.apache.sis.storage.DataStoreProvider.canOpen(StorageConnector)
Replaced by
DataStoreProvider.probeContent(StorageConnector) . |
org.apache.sis.util.ArraysExt.copyAsFloats(double[])
Will be removed since we do not plan to provide static converter methods for every possible
type combination, and user should probably control himself the rounding behavior.
|
org.apache.sis.util.ArraysExt.copyAsInts(double[])
Will be removed since we do not plan to provide static converter methods for every possible
type combination, and user should probably control himself the rounding behavior.
|
org.apache.sis.math.MathFunctions.fractionDigitsForDelta(double, boolean)
Moved to the
DecimalFunctions class. |
org.apache.sis.util.Locales.getAvailableLocales(Locale)
Not useful in practice, since we typically also need the original Locale object.
|
org.apache.sis.util.Locales.getLanguages(Locale...)
Users can easily perform this operation themselves, thus avoiding this class initialization.
|
org.apache.sis.util.Locales.parseSuffix(String, String)
Users can easily perform this operation themselves, thus avoiding this class initialization.
|
org.apache.sis.math.MathFunctions.sgn(byte)
Something close is available in standard Java as
Integer.signum(int) . |
org.apache.sis.math.MathFunctions.sgn(double)
Something close is available in standard Java as
Math.signum(double) . |
org.apache.sis.math.MathFunctions.sgn(float)
Something close is available in standard Java as
Math.signum(float) . |
org.apache.sis.math.MathFunctions.sgn(int)
Available in standard Java as
Integer.signum(int) . |
org.apache.sis.math.MathFunctions.sgn(long)
Available in standard Java as
Long.signum(long) . |
org.apache.sis.math.MathFunctions.sgn(short)
Something close is available in standard Java as
Integer.signum(int) . |
org.apache.sis.io.TableAppender.writeHorizontalSeparator() |
Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.