Skip navigation links
  • Overview
  • Package
  • Class
  • Use
  • Tree
  • Deprecated
  • Index
  • Help

Deprecated API

Contents

  • Fields
  • Methods
  • Constructors
  • Enum Constants
  • Annotation Interface Elements
  • Deprecated Fields
    Field
    Description
    com.landawn.abacus.util.ClassUtil.CLASS_MASK
    for internal only.
    com.landawn.abacus.util.ClassUtil.FIELD_MASK
    for internal only.
    com.landawn.abacus.util.ClassUtil.METHOD_MASK
    for internal only.
    com.landawn.abacus.util.InternalUtil.POOL_SIZE
    DO NOT call the methods defined in this class. it's for internal use only.
  • Deprecated Methods
    Method
    Description
    com.landawn.abacus.annotation.Column.value()
    use name to specify attribute explicitly.
    com.landawn.abacus.annotation.Table.value()
    use name to specify attribute explicitly.
    com.landawn.abacus.annotation.Type.value()
    use name to specify attribute explicitly.
    com.landawn.abacus.guava.Files.createTempDir()
    For Android users, see the Data and File Storage overview to select an appropriate temporary directory (perhaps context.getCacheDir()). For developers on Java 7 or later, use Files.createTempDirectory(java.nio.file.Path, java.lang.String, java.nio.file.attribute.FileAttribute<?>...), transforming it to a File using toFile() if needed.
    com.landawn.abacus.guava.hash.Hashing.md5()
    If you must interoperate with a system that requires MD5, then use this method, despite its deprecation. But if you can choose your hash function, avoid MD5, which is neither fast nor secure. As of January 2017, we suggest:
    • For security: Hashing.sha256() or a higher-level API.
    • For speed: Hashing.goodFastHash(int), though see its docs for caveats.
    com.landawn.abacus.guava.hash.Hashing.sha1()
    If you must interoperate with a system that requires SHA-1, then use this method, despite its deprecation. But if you can choose your hash function, avoid SHA-1, which is neither fast nor secure. As of January 2017, we suggest:
    • For security: Hashing.sha256() or a higher-level API.
    • For speed: Hashing.goodFastHash(int), though see its docs for caveats.
    com.landawn.abacus.http.HttpUtil.turnOffCertificateValidation()
     
    com.landawn.abacus.http.OkHttpRequest.addHeader(String, String)
    no use case?
    com.landawn.abacus.http.OkHttpRequest.body(Object)
    replaced by OkHttpRequest.formBody(Object).
    com.landawn.abacus.http.OkHttpRequest.body(Map<?, ?>)
    replaced by OkHttpRequest.formBody(Map).
    com.landawn.abacus.http.OkHttpRequest.removeHeader(String)
    no use case?
    com.landawn.abacus.parser.AvroDeserializationConfig.ADC.of(Class<?>)
    to be removed in future version.
    com.landawn.abacus.parser.AvroDeserializationConfig.ADC.of(Class<?>, Schema)
    to be removed in future version.
    com.landawn.abacus.parser.AvroDeserializationConfig.ADC.of(Schema)
    to be removed in future version.
    com.landawn.abacus.parser.AvroSerializationConfig.ASC.of(Schema)
     
    com.landawn.abacus.parser.AvroSerializationConfig.ASC.of(Schema, Exclusion, Map<Class<?>, Set<String>>)
     
    com.landawn.abacus.parser.AvroSerializationConfig.getCharQuotation()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.getDateTimeFormat()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.getIndentation()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.getPropNamingPolicy()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.getStringQuotation()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.prettyFormat()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.prettyFormat(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.setCharQuotation(char)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.setDateTimeFormat(DateTimeFormat)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.setIndentation(String)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.setPropNamingPolicy(NamingPolicy)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.setStringQuotation(char)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.supportCircularReference()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.supportCircularReference(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeBigDecimalAsPlain()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeBigDecimalAsPlain(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeLongAsString()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeLongAsString(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeNullBooleanAsFalse()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeNullBooleanAsFalse(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeNullNumberAsZero()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeNullNumberAsZero(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeNullStringAsEmpty()
    UnsupportedOperationException
    com.landawn.abacus.parser.AvroSerializationConfig.writeNullStringAsEmpty(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.JSONDeserializationConfig.JDC.of(boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONDeserializationConfig.JDC.of(Class<?>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONDeserializationConfig.JDC.of(Class<?>, boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONDeserializationConfig.JDC.of(Class<?>, Class<?>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONDeserializationConfig.JDC.of(Class<?>, Class<?>, boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONDeserializationConfig.JDC.of(Class<?>, Class<?>, Class<?>, boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONDeserializationConfig.nullToEmpty()
    Use JSONDeserializationConfig.readNullToEmpty() instead
    com.landawn.abacus.parser.JSONDeserializationConfig.nullToEmpty(boolean)
    Use JSONDeserializationConfig.readNullToEmpty(boolean) instead
    com.landawn.abacus.parser.JSONSerializationConfig.JSC.of(boolean, boolean)
    to be removed in future version.
    com.landawn.abacus.parser.JSONSerializationConfig.JSC.of(boolean, boolean, DateTimeFormat, Exclusion, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONSerializationConfig.JSC.of(Exclusion, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.JSONSerializationConfig.JSC.of(DateTimeFormat)
    to be removed in future version.
    com.landawn.abacus.parser.JSONSerializationConfig.noCharQuotation()
    this method should not be called
    com.landawn.abacus.parser.JSONSerializationConfig.noQuotation()
    this method should not be called
    com.landawn.abacus.parser.JSONSerializationConfig.noStringQuotation()
    this method should not be called
    com.landawn.abacus.parser.JSONSerializationConfig.setCharQuotation(char)
    this method should not be called
    com.landawn.abacus.parser.JSONSerializationConfig.setStringQuotation(char)
    this method should not be called
    com.landawn.abacus.parser.KryoSerializationConfig.getCharQuotation()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.getDateTimeFormat()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.getIndentation()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.getPropNamingPolicy()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.getStringQuotation()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.KSC.of(boolean)
    to be removed in future version.
    com.landawn.abacus.parser.KryoSerializationConfig.KSC.of(boolean, Exclusion, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.KryoSerializationConfig.KSC.of(Exclusion, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.KryoSerializationConfig.prettyFormat()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.prettyFormat(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.setCharQuotation(char)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.setDateTimeFormat(DateTimeFormat)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.setIndentation(String)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.setPropNamingPolicy(NamingPolicy)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.setStringQuotation(char)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.supportCircularReference()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.supportCircularReference(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeBigDecimalAsPlain()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeBigDecimalAsPlain(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeLongAsString()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeLongAsString(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeNullBooleanAsFalse()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeNullBooleanAsFalse(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeNullNumberAsZero()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeNullNumberAsZero(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeNullStringAsEmpty()
    UnsupportedOperationException
    com.landawn.abacus.parser.KryoSerializationConfig.writeNullStringAsEmpty(boolean)
    UnsupportedOperationException
    com.landawn.abacus.parser.ParserUtil.refreshBeanPropInfo(Class<?>)
    internal use only.
    com.landawn.abacus.parser.XMLDeserializationConfig.XDC.of(boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLDeserializationConfig.XDC.of(Class<?>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLDeserializationConfig.XDC.of(Class<?>, boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLDeserializationConfig.XDC.of(Class<?>, Class<?>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLDeserializationConfig.XDC.of(Class<?>, Class<?>, boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLDeserializationConfig.XDC.of(Class<?>, Class<?>, Class<?>, boolean, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLSerializationConfig.noCharQuotation()
    this method should not be called
    com.landawn.abacus.parser.XMLSerializationConfig.noQuotation()
    this method should not be called
    com.landawn.abacus.parser.XMLSerializationConfig.noStringQuotation()
    this method should not be called
    com.landawn.abacus.parser.XMLSerializationConfig.setCharQuotation(char)
    this method should not be called
    com.landawn.abacus.parser.XMLSerializationConfig.setStringQuotation(char)
    this method should not be called
    com.landawn.abacus.parser.XMLSerializationConfig.XSC.of(boolean, boolean)
    to be removed in future version.
    com.landawn.abacus.parser.XMLSerializationConfig.XSC.of(boolean, boolean, DateTimeFormat, Exclusion, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLSerializationConfig.XSC.of(Exclusion, Map<Class<?>, Set<String>>)
    to be removed in future version.
    com.landawn.abacus.parser.XMLSerializationConfig.XSC.of(DateTimeFormat)
    to be removed in future version.
    com.landawn.abacus.util.Array.oF(T...)
    please use N.asArray(Object...).
    com.landawn.abacus.util.Array.repeat(T, int)
    prefer to Array.repeatNonNull(Object, int) or Array.repeat(Object, int, Class) because this method throws NullPointerException when element is null
    com.landawn.abacus.util.AsyncExecutor.execute(Throwables.Runnable<? extends Exception>...)
     
    com.landawn.abacus.util.AsyncExecutor.execute(Callable<R>...)
     
    com.landawn.abacus.util.BiIterator.forEachRemaining(Consumer<? super Pair<A, B>>)
     
    com.landawn.abacus.util.BiIterator.toArray(T[])
     
    com.landawn.abacus.util.BooleanIterator.forEachRemaining(Consumer<? super Boolean>)
     
    com.landawn.abacus.util.BooleanIterator.next()
    use nextBoolean() instead.
    com.landawn.abacus.util.BufferedWriter.write(int)
    replaced by write(char).
    com.landawn.abacus.util.ByteIterator.forEachRemaining(Consumer<? super Byte>)
     
    com.landawn.abacus.util.ByteIterator.next()
    use nextByte() instead.
    com.landawn.abacus.util.CharIterator.forEachRemaining(Consumer<? super Character>)
     
    com.landawn.abacus.util.CharIterator.next()
    use nextChar() instead.
    com.landawn.abacus.util.CheckedStream.__(Function<? super CheckedStream<T, E>, CheckedStream<TT, EE>>)
    replaced by CheckedStream.transform(Function)
    com.landawn.abacus.util.CheckedStream.skipNull()
    Use CheckedStream.skipNulls() instead
    com.landawn.abacus.util.ClassUtil.setPropValue(Object, String, Object)
    replaced by ParserUtil.BeanInfo.setPropValue(Object, String, Object)
    com.landawn.abacus.util.ClassUtil.setPropValue(Object, String, Object, boolean)
    replaced by ParserUtil.BeanInfo.setPropValue(Object, String, Object, boolean)
    com.landawn.abacus.util.DataSourceUtil.close(Connection)
    consider using DataSourceUtil.releaseConnection(Connection, javax.sql.DataSource)
    com.landawn.abacus.util.DataSourceUtil.closeQuietly(Connection)
    consider using DataSourceUtil.releaseConnection(Connection, javax.sql.DataSource)
    com.landawn.abacus.util.DateUtil.roll(T, long, CalendarField)
    replaced by addYears/addMonths/addWeeks/...
    com.landawn.abacus.util.DateUtil.roll(T, long, TimeUnit)
    replaced by addYears/addMonths/addWeeks/...
    com.landawn.abacus.util.DoubleIterator.forEachRemaining(Consumer<? super Double>)
     
    com.landawn.abacus.util.DoubleIterator.next()
    use nextDouble() instead.
    com.landawn.abacus.util.FloatIterator.forEachRemaining(Consumer<? super Float>)
     
    com.landawn.abacus.util.FloatIterator.next()
    use nextFloat() instead.
    com.landawn.abacus.util.Fn.between(T, T)
    replaced by gtAndLt.
    com.landawn.abacus.util.Fn.BinaryOperators.ofAddAll()
    replaced by #ofAddAllToFirst()
    com.landawn.abacus.util.Fn.BinaryOperators.ofAppend()
    replaced by #ofAppendToFirst()
    com.landawn.abacus.util.Fn.BinaryOperators.ofMerge()
    replaced by #ofMergeToFirst.
    com.landawn.abacus.util.Fn.BinaryOperators.ofPutAll()
    replaced by #ofPutAllToFirst()
    com.landawn.abacus.util.Fn.BinaryOperators.ofRemoveAll()
    replaced by #ofRemoveAllFromFirst().
    com.landawn.abacus.util.Fn.entry(Function<? super V, K>)
    replaced by Fn#entryByKeyMapper(Function)
    com.landawn.abacus.util.Fn.entry(K)
    replaced by Fn#entryWithKey(Object)
    com.landawn.abacus.util.Fn.Factory.ofImmutableList()
    unsupported operation.
    com.landawn.abacus.util.Fn.Factory.ofImmutableMap()
    unsupported operation.
    com.landawn.abacus.util.Fn.Factory.ofImmutableSet()
    unsupported operation.
    com.landawn.abacus.util.Fn.Factory.single(IntFunction<? extends C>)
     
    com.landawn.abacus.util.Fn.FnB.alternated()
     
    com.landawn.abacus.util.Fn.FnC.alternated()
     
    com.landawn.abacus.util.Fn.FnD.alternated()
     
    com.landawn.abacus.util.Fn.FnF.alternated()
     
    com.landawn.abacus.util.Fn.FnI.alternated()
     
    com.landawn.abacus.util.Fn.FnL.alternated()
     
    com.landawn.abacus.util.Fn.FnS.alternated()
     
    com.landawn.abacus.util.Fn.nullToEmptyL()
    replaced by nullToEmptyList
    com.landawn.abacus.util.Fn.nullToEmptyM()
    replaced by nullToEmptyMap
    com.landawn.abacus.util.Fn.nullToEmptyS()
    replaced by nullToEmptySet
    com.landawn.abacus.util.Fn.reuse(IntFunction<? extends C>)
     
    com.landawn.abacus.util.Fn.reuse(Supplier<? extends C>)
     
    com.landawn.abacus.util.Fn.Suppliers.ofImmutableList()
    unsupported operation.
    com.landawn.abacus.util.Fn.Suppliers.ofImmutableMap()
    unsupported operation.
    com.landawn.abacus.util.Fn.Suppliers.ofImmutableSet()
    unsupported operation.
    com.landawn.abacus.util.Fn.Suppliers.single(Supplier<? extends C>)
     
    com.landawn.abacus.util.Fraction.getDenominator()
    replaced by denominator
    com.landawn.abacus.util.Fraction.getNumerator()
    replaced by numerator
    com.landawn.abacus.util.Fraction.getProperNumerator()
    replaced by properNumerator
    com.landawn.abacus.util.Fraction.getProperWhole()
    replaced by properWhole
    com.landawn.abacus.util.Holder.acceptIfNotNull(Throwables.Consumer<? super T, E>)
    replaced by Holder.ifNotNull(Throwables.Consumer)
    com.landawn.abacus.util.Holder.getValue()
    replace by Holder.value().
    com.landawn.abacus.util.Holder.setIf(T, Throwables.BiPredicate<? super T, ? super T, E>)
     
    com.landawn.abacus.util.ImmutableArray.wrap(T[])
    the ImmutableArray may be modified through the specified elements
    com.landawn.abacus.util.ImmutableBiMap.copyOf(Map<? extends K, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableBiMap.wrap(BiMap<? extends K, ? extends V>)
    the ImmutableBiMap may be modified through the specified map
    com.landawn.abacus.util.ImmutableBiMap.wrap(Map<? extends K, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.add(E)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.addAll(Collection<? extends E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.clear()
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.remove(Object)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.removeAll(Collection<?>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.removeIf(Predicate<? super E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.retainAll(Collection<?>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableCollection.wrap(Collection<? extends E>)
    the ImmutableCollection may be modified through the specified Collection
    com.landawn.abacus.util.ImmutableEntry.setValue(V)
     
    com.landawn.abacus.util.ImmutableList.add(int, E)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableList.addAll(int, Collection<? extends E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableList.remove(int)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableList.replaceAll(UnaryOperator<E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableList.set(int, E)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableList.sort(Comparator<? super E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableList.wrap(Collection<? extends E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableList.wrap(List<? extends E>)
    the ImmutableList may be modified through the specified list
    com.landawn.abacus.util.ImmutableListIterator.add(T)
    - UnsupportedOperationException
    com.landawn.abacus.util.ImmutableListIterator.set(T)
    - UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.clear()
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.compute(K, BiFunction<? super K, ? super V, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.computeIfAbsent(K, Function<? super K, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.computeIfPresent(K, BiFunction<? super K, ? super V, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.merge(K, V, BiFunction<? super V, ? super V, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.put(K, V)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.putAll(Map<? extends K, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.putIfAbsent(K, V)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.remove(Object)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.remove(Object, Object)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.replace(K, V)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.replace(K, V, V)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableMap.wrap(Map<? extends K, ? extends V>)
    the ImmutableMap may be modified through the specified map
    com.landawn.abacus.util.ImmutableNavigableMap.pollFirstEntry()
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableNavigableMap.pollLastEntry()
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableNavigableMap.wrap(NavigableMap<? extends K, ? extends V>)
    the ImmutableNavigableMap may be modified through the specified navigableMap
    com.landawn.abacus.util.ImmutableNavigableMap.wrap(SortedMap<? extends K, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableNavigableSet.pollFirst()
    - UnsupportedOperationException
    com.landawn.abacus.util.ImmutableNavigableSet.pollLast()
    - UnsupportedOperationException
    com.landawn.abacus.util.ImmutableNavigableSet.wrap(NavigableSet<? extends E>)
    the ImmutableNavigableSet may be modified through the specified navigableSet
    com.landawn.abacus.util.ImmutableNavigableSet.wrap(SortedSet<? extends E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableSet.wrap(Collection<? extends E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableSet.wrap(Set<? extends E>)
    the ImmutableSet may be modified through the specified set
    com.landawn.abacus.util.ImmutableSortedMap.copyOf(Map<? extends K, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableSortedMap.wrap(Map<? extends K, ? extends V>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableSortedMap.wrap(SortedMap<? extends K, ? extends V>)
    the ImmutableSortedMap may be modified through the specified sortedMap
    com.landawn.abacus.util.ImmutableSortedSet.wrap(Set<? extends E>)
    throws UnsupportedOperationException
    com.landawn.abacus.util.ImmutableSortedSet.wrap(SortedSet<? extends E>)
    the ImmutableSortedSet may be modified through the specified sortedSet
    com.landawn.abacus.util.InternalUtil.getCharsForReadOnly(String)
    DO NOT call the methods defined in this class. it's for internal use only.
    com.landawn.abacus.util.IntIterator.forEachRemaining(Consumer<? super Integer>)
     
    com.landawn.abacus.util.IntIterator.next()
    use nextInt() instead.
    com.landawn.abacus.util.IOUtil.readLines(File)
    replaced by IOUtil.readAllLines(File)
    com.landawn.abacus.util.IOUtil.readLines(File, Charset)
    replaced by IOUtil.readAllLines(File, Charset)
    com.landawn.abacus.util.IOUtil.readLines(InputStream)
    replaced by IOUtil.readAllLines(InputStream)
    com.landawn.abacus.util.IOUtil.readLines(InputStream, Charset)
    replaced by IOUtil.readAllLines(InputStream, Charset)
    com.landawn.abacus.util.IOUtil.readLines(Reader)
    replaced by IOUtil.readAllLines(Reader)
    com.landawn.abacus.util.ISO8601Util.format(Date, boolean, TimeZone)
     
    com.landawn.abacus.util.Iterators.skipNull(Iterator<? extends T>)
    Use #skipNulls(Iterator<? extends T>) instead
    com.landawn.abacus.util.Joiner.reuseCachedBuffer(boolean)
    replaced by Joiner.reuseCachedBuffer()
    com.landawn.abacus.util.Joiner.skipNull(boolean)
    replaced by Joiner.skipNulls()
    com.landawn.abacus.util.Joiner.trim(boolean)
    replaced by Joiner.trimBeforeAppend()
    com.landawn.abacus.util.LongIterator.forEachRemaining(Consumer<? super Long>)
     
    com.landawn.abacus.util.LongIterator.next()
    use nextLong() instead.
    com.landawn.abacus.util.Maps.newEntry(K, V)
    replaced by CommonUtil.newEntry(Object, Object)
    com.landawn.abacus.util.Maps.newImmutableEntry(K, V)
    replaced by CommonUtil.newImmutableEntry(Object, Object)
    com.landawn.abacus.util.Maps.newMap(Collection<? extends T>, Function<? super T, ? extends K>)
    Use #create(Collection<? extends T>,Function<? super T, ? extends K>) instead
    com.landawn.abacus.util.Maps.newMap(Collection<? extends T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>)
    Use #create(Collection<? extends T>,Function<? super T, ? extends K>,Function<? super T, ? extends V>) instead
    com.landawn.abacus.util.Maps.newMap(Collection<? extends T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>, BinaryOperator<V>, IntFunction<? extends M>)
    Use #create(Collection<? extends T>,Function<? super T, ? extends K>,Function<? super T, ? extends V>,BinaryOperator<V>,IntFunction<? extends M>) instead
    com.landawn.abacus.util.Maps.newMap(Collection<? extends T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>, IntFunction<? extends M>)
    Use #create(Collection<? extends T>,Function<? super T, ? extends K>,Function<? super T, ? extends V>,IntFunction<? extends M>) instead
    com.landawn.abacus.util.Maps.newMap(Iterator<? extends T>, Function<? super T, K>)
    Use #create(Iterator<? extends T>,Throwables.Function<? super T, K, E>) instead
    com.landawn.abacus.util.Maps.newMap(Iterator<? extends T>, Function<? super T, K>, Function<? super T, ? extends V>)
    Use #create(Iterator<? extends T>,Throwables.Function<? super T, K, E>,Function<? super T, ? extends V>) instead
    com.landawn.abacus.util.Maps.newMap(Iterator<? extends T>, Function<? super T, K>, Function<? super T, ? extends V>, BinaryOperator<V>, Supplier<? extends M>)
    Use #create(Iterator<? extends T>,Throwables.Function<? super T, K, E>,Function<? super T, ? extends V>,BinaryOperator<V>,Supplier<? extends M>) instead
    com.landawn.abacus.util.Maps.newMap(Iterator<? extends T>, Function<? super T, K>, Function<? super T, ? extends V>, Supplier<? extends M>)
    Use #create(Iterator<? extends T>,Throwables.Function<? super T, K, E>,Function<? super T, ? extends V>,Supplier<? extends M>) instead
    com.landawn.abacus.util.MergeResult.switchOnNext()
    Use Fn.switchOnNext() instead
    com.landawn.abacus.util.Multimap.replaceAll(K, Collection<? extends E>, E)
     
    com.landawn.abacus.util.Multimap.replaceAllIf(Throwables.BiPredicate<? super K, ? super V, X>, Collection<? extends E>, E)
     
    com.landawn.abacus.util.Multimap.replaceAllIf(Throwables.Predicate<? super K, X>, Collection<? extends E>, E)
     
    com.landawn.abacus.util.MutableBoolean.getValue()
    replace by MutableBoolean.value().
    com.landawn.abacus.util.MutableByte.getValue()
    replace by MutableByte.value().
    com.landawn.abacus.util.MutableChar.getValue()
    replace by MutableChar.value().
    com.landawn.abacus.util.MutableDouble.getValue()
    replace by MutableDouble.value().
    com.landawn.abacus.util.MutableFloat.getValue()
    replace by MutableFloat.value().
    com.landawn.abacus.util.MutableInt.getValue()
    replace by MutableInt.value().
    com.landawn.abacus.util.MutableLong.getValue()
    replace by MutableLong.value().
    com.landawn.abacus.util.MutableShort.getValue()
    replace by MutableShort.value().
    com.landawn.abacus.util.N.forEach(int, int, int, T, Throwables.ObjIntConsumer<? super T, E>)
    use traditional for-loop
    com.landawn.abacus.util.N.forEach(int, int, T, Throwables.ObjIntConsumer<? super T, E>)
    use traditional for-loop
    com.landawn.abacus.util.N.reverseOrder(Comparator<T>)
    replaced by Comparators.reverseOrder(Comparator)
    com.landawn.abacus.util.N.updateAllUsingReplaceAllInstead()
    use replaceAll
    com.landawn.abacus.util.N.updateIfUsingReplaceIfInstead()
    use replaceIf
    com.landawn.abacus.util.NoCachingNoUpdating.DisposableEntry.setValue(V)
    UnsupportedOperationException
    com.landawn.abacus.util.NoCachingNoUpdating.DisposableObjArray.create(Class<T>, int)
    throw UnsupportedOperation
    com.landawn.abacus.util.PaginatedDataSet.pageCount()
    replaced by totalPages
    com.landawn.abacus.util.PrimitiveList.array()
    should call toArray()
    com.landawn.abacus.util.Result.getExceptionIfPresent()
    replaced by getException
    com.landawn.abacus.util.Result.orElse(T)
    replaced by Result.orElseIfFailure(Object)
    com.landawn.abacus.util.Result.orElseGet(Throwables.Supplier<? extends T, E2>)
    replaced by Result.orElseGetIfFailure(Throwables.Supplier)
    com.landawn.abacus.util.Retry.RetryR.iterate(Iterator<E>)
    replaced by RetryR#iterate(Iterator, int).
    com.landawn.abacus.util.Seid.clear()
    for internal use only
    com.landawn.abacus.util.Seid.copy()
    for internal use only
    com.landawn.abacus.util.Seid.of(String)
    for internal use only
    com.landawn.abacus.util.Seid.set(String, Object)
    for internal use only
    com.landawn.abacus.util.Seid.set(Map<String, Object>)
    for internal use only
    com.landawn.abacus.util.ShortIterator.forEachRemaining(Consumer<? super Short>)
     
    com.landawn.abacus.util.ShortIterator.next()
    use nextShort() instead.
    com.landawn.abacus.util.Splitter.MapSplitter.omitEmptyStrings(boolean)
    replaced by Splitter.MapSplitter.omitEmptyStrings()
    com.landawn.abacus.util.Splitter.MapSplitter.strip(boolean)
    replaced by Splitter.MapSplitter.stripResults()
    com.landawn.abacus.util.Splitter.MapSplitter.trim(boolean)
    replaced by Splitter.MapSplitter.trimResults()
    com.landawn.abacus.util.Splitter.omitEmptyStrings(boolean)
    replaced by Splitter.omitEmptyStrings()
    com.landawn.abacus.util.Splitter.strip(boolean)
    replaced by Splitter.stripResults()
    com.landawn.abacus.util.Splitter.trim(boolean)
    replaced by Splitter.trimResults()
    com.landawn.abacus.util.stream.BaseStream.__(Function<? super S, ? extends SS>)
    replaced by BaseStream.transform(Function)
    com.landawn.abacus.util.stream.BaseStream.iterator()
    ? may cause memory/resource leak if forget to close this Stream
    com.landawn.abacus.util.stream.EntryStream.flatmapKeyToDisposableEntry(Function<? super K, ? extends Collection<? extends KK>>)
     
    com.landawn.abacus.util.stream.EntryStream.flatMapKeyToDisposableEntry(Function<? super K, ? extends Stream<? extends KK>>)
     
    com.landawn.abacus.util.stream.EntryStream.flatmapValueToDisposableEntry(Function<? super V, ? extends Collection<? extends VV>>)
     
    com.landawn.abacus.util.stream.EntryStream.flatMapValueToDisposableEntry(Function<? super V, ? extends Stream<? extends VV>>)
     
    com.landawn.abacus.util.stream.EntryStream.inversedToDisposableEntry()
     
    com.landawn.abacus.util.stream.EntryStream.mapToDisposableEntry(BiFunction<? super K, ? super V, ? extends KK>, BiFunction<? super K, ? super V, ? extends VV>)
     
    com.landawn.abacus.util.stream.EntryStream.mapToDisposableEntry(Function<? super Map.Entry<K, V>, ? extends KK>, Function<? super Map.Entry<K, V>, ? extends VV>)
     
    com.landawn.abacus.util.stream.EntryStream.reverseSorted()
     
    com.landawn.abacus.util.stream.EntryStream.sorted()
     
    com.landawn.abacus.util.stream.LongStream.asFloatStream()
     
    com.landawn.abacus.util.stream.Stream.mapToDisposableEntry(Function<? super T, ? extends K>, Function<? super T, ? extends V>)
     
    com.landawn.abacus.util.stream.Stream.skipNull()
    Use Stream.skipNulls() instead
    com.landawn.abacus.util.Strings.isNumber(String)
    use Numbers.isNumber(String) instead
    com.landawn.abacus.util.Strings.parseByte(String)
    replaced by Numbers.toByte(String)
    com.landawn.abacus.util.Strings.parseDouble(String)
    replaced by Numbers.toDouble(String)
    com.landawn.abacus.util.Strings.parseFloat(String)
    replaced by Numbers.toFloat(String)
    com.landawn.abacus.util.Strings.parseInt(String)
    replaced by Numbers.toInt(String)
    com.landawn.abacus.util.Strings.parseLong(String)
    replaced by Numbers.toLong(String)
    com.landawn.abacus.util.Strings.parseShort(String)
    replaced by Numbers.toShort(String)
    com.landawn.abacus.util.Strings.replaceOnce(String, int, String, String)
    Use Strings.replaceFirst(String,int,String,String) instead
    com.landawn.abacus.util.Strings.replaceOnce(String, String, String)
    Use Strings.replaceFirst(String,String,String) instead
    com.landawn.abacus.util.Strings.replaceOnceIgnoreCase(String, int, String, String)
    Use Strings.replaceFirstIgnoreCase(String,int,String,String) instead
    com.landawn.abacus.util.Strings.replaceOnceIgnoreCase(String, String, String)
    Use Strings.replaceFirstIgnoreCase(String,String,String) instead
    com.landawn.abacus.util.Strings.split(String, String, int)
    Splitter is recommended.
    com.landawn.abacus.util.Strings.split(String, String, int, boolean)
    Splitter is recommended.
    com.landawn.abacus.util.Strings.splitPreserveAllTokens(String, String, int)
    Splitter is recommended.
    com.landawn.abacus.util.Strings.splitPreserveAllTokens(String, String, int, boolean)
    Splitter is recommended.
    com.landawn.abacus.util.Strings.substring(String, char)
     
    com.landawn.abacus.util.Strings.substring(String, char, int)
     
    com.landawn.abacus.util.Strings.substring(String, int, char)
     
    com.landawn.abacus.util.Strings.substring(String, int, String)
     
    com.landawn.abacus.util.Strings.substring(String, String)
     
    com.landawn.abacus.util.Strings.substring(String, String, int)
     
    com.landawn.abacus.util.TriIterator.forEachRemaining(Consumer<? super Triple<A, B, C>>)
     
    com.landawn.abacus.util.TriIterator.toArray(T[])
     
    com.landawn.abacus.util.Tuple.of(T1, T2, T3, T4, T5, T6, T7, T8)
    you should consider using class Some Bean/Record class: MyRecord { final T1 propName1, final T2 propName2...}
    com.landawn.abacus.util.Tuple.of(T1, T2, T3, T4, T5, T6, T7, T8, T9)
    you should consider using class Some Bean/Record class: MyRecord { final T1 propName1, final T2 propName2...}
    com.landawn.abacus.util.u.Nullable.isEmpty()
    replaced by u.Nullable.isNotPresent()
    com.landawn.abacus.util.u.Nullable.orNull()
    using u.Nullable.orElseNull()
    com.landawn.abacus.util.u.Optional.__()
    to be removed in future version.
    com.landawn.abacus.util.u.Optional.orNull()
    using u.Optional.orElseNull()
    com.landawn.abacus.util.u.OptionalBoolean.orFalse()
    use {@link #orElse(false)}
    com.landawn.abacus.util.u.OptionalBoolean.orTrue()
    use {@link #orElse(true)}
    com.landawn.abacus.util.u.OptionalByte.orZero()
    use u.OptionalByte.orElseZero()
    com.landawn.abacus.util.u.OptionalChar.orZero()
    use u.OptionalChar.orElseZero()
    com.landawn.abacus.util.u.OptionalDouble.__()
    to be removed in future version.
    com.landawn.abacus.util.u.OptionalDouble.orZero()
    use u.OptionalDouble.orElseZero()
    com.landawn.abacus.util.u.OptionalFloat.orZero()
    use u.OptionalFloat.orElseZero()
    com.landawn.abacus.util.u.OptionalInt.__()
    to be removed in future version.
    com.landawn.abacus.util.u.OptionalInt.orZero()
    use u.OptionalInt.orElseZero()
    com.landawn.abacus.util.u.OptionalLong.__()
    to be removed in future version.
    com.landawn.abacus.util.u.OptionalLong.orZero()
    use u.OptionalLong.orElseZero()
    com.landawn.abacus.util.u.OptionalShort.orZero()
    use u.OptionalShort.orElseZero()
  • Deprecated Constructors
    Constructor
    Description
    com.landawn.abacus.util.Seid(String)
     
  • Deprecated Enum Constants
    Enum Constant
    Description
    com.landawn.abacus.annotation.JsonXmlField.Expose.DEFAULT
    don't need to set it. It's DEFAULT by default.
    com.landawn.abacus.util.LockMode.A
    not supported at present.
    com.landawn.abacus.util.LockMode.AD
    not supported at present.
    com.landawn.abacus.util.LockMode.AU
    not supported at present.
    com.landawn.abacus.util.LockMode.AUD
    not supported at present.
    com.landawn.abacus.util.LockMode.RA
    not supported at present.
    com.landawn.abacus.util.LockMode.RAD
    not supported at present.
    com.landawn.abacus.util.LockMode.RAU
    not supported at present.
    com.landawn.abacus.util.LockMode.RAUD
    not supported at present.
  • Deprecated Annotation Interface Elements
    Annotation Interface Element
    Description
    com.landawn.abacus.annotation.Column.value()
    use name to specify attribute explicitly.
    com.landawn.abacus.annotation.Table.value()
    use name to specify attribute explicitly.
    com.landawn.abacus.annotation.Type.value()
    use name to specify attribute explicitly.

Copyright © 2024. All rights reserved.