Java common lang jar

Download commons-lang3-3.1.jar : commons lang3 « c « Jar File Download

The download jar file contains the following class files or Java source files.

META-INF/LICENSE.txt META-INF/MANIFEST.MF META-INF/NOTICE.txt META-INF/maven/org.apache.commons/commons-lang3/pom.properties META-INF/maven/org.apache.commons/commons-lang3/pom.xml org.apache.commons.lang3.AnnotationUtils.class org.apache.commons.lang3.ArrayUtils.class org.apache.commons.lang3.BitField.class org.apache.commons.lang3.BooleanUtils.class org.apache.commons.lang3.CharEncoding.class org.apache.commons.lang3.CharRange.class org.apache.commons.lang3.CharSequenceUtils.class org.apache.commons.lang3.CharSet.class org.apache.commons.lang3.CharSetUtils.class org.apache.commons.lang3.CharUtils.class org.apache.commons.lang3.ClassUtils.class org.apache.commons.lang3.EnumUtils.class org.apache.commons.lang3.JavaVersion.class org.apache.commons.lang3.LocaleUtils.class org.apache.commons.lang3.ObjectUtils.class org.apache.commons.lang3.RandomStringUtils.class org.apache.commons.lang3.Range.class org.apache.commons.lang3.SerializationException.class org.apache.commons.lang3.SerializationUtils.class org.apache.commons.lang3.StringEscapeUtils.class org.apache.commons.lang3.StringUtils.class org.apache.commons.lang3.SystemUtils.class org.apache.commons.lang3.Validate.class org.apache.commons.lang3.builder.Builder.class org.apache.commons.lang3.builder.CompareToBuilder.class org.apache.commons.lang3.builder.EqualsBuilder.class org.apache.commons.lang3.builder.HashCodeBuilder.class org.apache.commons.lang3.builder.IDKey.class org.apache.commons.lang3.builder.ReflectionToStringBuilder.class org.apache.commons.lang3.builder.StandardToStringStyle.class org.apache.commons.lang3.builder.ToStringBuilder.class org.apache.commons.lang3.builder.ToStringStyle.class org.apache.commons.lang3.concurrent.AtomicInitializer.class org.apache.commons.lang3.concurrent.AtomicSafeInitializer.class org.apache.commons.lang3.concurrent.BackgroundInitializer.class org.apache.commons.lang3.concurrent.BasicThreadFactory.class org.apache.commons.lang3.concurrent.CallableBackgroundInitializer.class org.apache.commons.lang3.concurrent.ConcurrentException.class org.apache.commons.lang3.concurrent.ConcurrentInitializer.class org.apache.commons.lang3.concurrent.ConcurrentRuntimeException.class org.apache.commons.lang3.concurrent.ConcurrentUtils.class org.apache.commons.lang3.concurrent.ConstantInitializer.class org.apache.commons.lang3.concurrent.LazyInitializer.class org.apache.commons.lang3.concurrent.MultiBackgroundInitializer.class org.apache.commons.lang3.concurrent.TimedSemaphore.class org.apache.commons.lang3.event.EventListenerSupport.class org.apache.commons.lang3.event.EventUtils.class org.apache.commons.lang3.exception.CloneFailedException.class org.apache.commons.lang3.exception.ContextedException.class org.apache.commons.lang3.exception.ContextedRuntimeException.class org.apache.commons.lang3.exception.DefaultExceptionContext.class org.apache.commons.lang3.exception.ExceptionContext.class org.apache.commons.lang3.exception.ExceptionUtils.class org.apache.commons.lang3.math.Fraction.class org.apache.commons.lang3.math.IEEE754rUtils.class org.apache.commons.lang3.math.NumberUtils.class org.apache.commons.lang3.mutable.Mutable.class org.apache.commons.lang3.mutable.MutableBoolean.class org.apache.commons.lang3.mutable.MutableByte.class org.apache.commons.lang3.mutable.MutableDouble.class org.apache.commons.lang3.mutable.MutableFloat.class org.apache.commons.lang3.mutable.MutableInt.class org.apache.commons.lang3.mutable.MutableLong.class org.apache.commons.lang3.mutable.MutableObject.class org.apache.commons.lang3.mutable.MutableShort.class org.apache.commons.lang3.reflect.ConstructorUtils.class org.apache.commons.lang3.reflect.FieldUtils.class org.apache.commons.lang3.reflect.MemberUtils.class org.apache.commons.lang3.reflect.MethodUtils.class org.apache.commons.lang3.reflect.TypeUtils.class org.apache.commons.lang3.text.CompositeFormat.class org.apache.commons.lang3.text.ExtendedMessageFormat.class org.apache.commons.lang3.text.FormatFactory.class org.apache.commons.lang3.text.FormattableUtils.class org.apache.commons.lang3.text.StrBuilder.class org.apache.commons.lang3.text.StrLookup.class org.apache.commons.lang3.text.StrMatcher.class org.apache.commons.lang3.text.StrSubstitutor.class org.apache.commons.lang3.text.StrTokenizer.class org.apache.commons.lang3.text.WordUtils.class org.apache.commons.lang3.text.translate.AggregateTranslator.class org.apache.commons.lang3.text.translate.CharSequenceTranslator.class org.apache.commons.lang3.text.translate.CodePointTranslator.class org.apache.commons.lang3.text.translate.EntityArrays.class org.apache.commons.lang3.text.translate.LookupTranslator.class org.apache.commons.lang3.text.translate.NumericEntityEscaper.class org.apache.commons.lang3.text.translate.NumericEntityUnescaper.class org.apache.commons.lang3.text.translate.OctalUnescaper.class org.apache.commons.lang3.text.translate.UnicodeEscaper.class org.apache.commons.lang3.text.translate.UnicodeUnescaper.class org.apache.commons.lang3.time.DateFormatUtils.class org.apache.commons.lang3.time.DateUtils.class org.apache.commons.lang3.time.DurationFormatUtils.class org.apache.commons.lang3.time.FastDateFormat.class org.apache.commons.lang3.time.FormatCache.class org.apache.commons.lang3.time.StopWatch.class org.apache.commons.lang3.tuple.ImmutablePair.class org.apache.commons.lang3.tuple.MutablePair.class org.apache.commons.lang3.tuple.Pair.class templates/release-notes.vm

java2s.com | © Demo Source and Support. All rights reserved.

Источник

Java common lang jar

ApacheCon

Commons Lang

The standard Java libraries fail to provide enough methods for manipulation of its core classes. Apache Commons Lang provides these extra methods.

Apache Commons Lang provides a host of helper utilities for the java.lang API, notably String manipulation methods, basic numerical methods, object reflection, concurrency, creation and serialization and System properties. Additionally it contains basic enhancements to java.util.Date and a series of utilities dedicated to help with building methods, such as hashCode, toString and equals.

Читайте также:  Знакомство с GET-запросами

Note that Commons Lang 3.0 (and subsequent versions) use a different package (org.apache.commons.lang3) than the previous versions (org.apache.commons.lang), allowing Commons Lang 3 to be used at the same time as Commons Lang 2.

Documentation

The package descriptions in the Javadoc give an overview of the available features and various project reports are provided.

The Javadoc API documents are available online:

The git repository can be browsed, or you can browse/contribute via GitHub.

Release Information

The latest stable release of Lang is 3.12.0:

  • Pull it using a build tool like Maven using a dependency management reference.
  • Download the latest release from a mirror.
  • Read the release notes.
  • Examine the 2.x to 3.0 upgrade notes.
  • Compare major versions via the Lang2 to Lang3 Clirr report.

For information on previous releases see the Release History, and to download previous releases see the Commons Lang Archive.

Getting Involved

The commons developer mailing list is the main channel of communication for contributors. Please remember that the lists are shared between all commons components, so prefix your email by [lang].

You can also visit the #apache-commons IRC channel on irc.freenode.net or peruse JIRA. Specific links of interest for JIRA are:

Alternatively you can go through the Needs Work tags in the TagList report.

If you’d like to offer up pull requests via GitHub rather than applying patches to JIRA, we have a GitHub mirror.

Support

The commons mailing lists act as the main support forum. The user list is suitable for most library usage queries. The dev list is intended for the development discussion. Please remember that the lists are shared between all commons components, so prefix your email by [lang].

Bug reports and enhancements are also welcomed via the JIRA issue tracker. Please read the instructions carefully.

Copyright © 2001-2021 The Apache Software Foundation. All Rights Reserved.

Apache Commons, Apache Commons Lang, Apache, the Apache feather logo, and the Apache Commons project logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.

Источник

Download apache-commons-lang.jar : apache commons « a « Jar File Download

The download jar file contains the following class files or Java source files.

META-INF/LICENSE.txt META-INF/MANIFEST.MF META-INF/NOTICE.txt META-INF/maven/commons-lang/commons-lang/pom.properties META-INF/maven/commons-lang/commons-lang/pom.xml org.apache.commons.lang.ArrayUtils.class org.apache.commons.lang.BitField.class org.apache.commons.lang.BooleanUtils.class org.apache.commons.lang.CharEncoding.class org.apache.commons.lang.CharRange.class org.apache.commons.lang.CharSet.class org.apache.commons.lang.CharSetUtils.class org.apache.commons.lang.CharUtils.class org.apache.commons.lang.ClassUtils.class org.apache.commons.lang.Entities.class org.apache.commons.lang.IllegalClassException.class org.apache.commons.lang.IncompleteArgumentException.class org.apache.commons.lang.IntHashMap.class org.apache.commons.lang.LocaleUtils.class org.apache.commons.lang.NotImplementedException.class org.apache.commons.lang.NullArgumentException.class org.apache.commons.lang.NumberRange.class org.apache.commons.lang.NumberUtils.class org.apache.commons.lang.ObjectUtils.class org.apache.commons.lang.RandomStringUtils.class org.apache.commons.lang.SerializationException.class org.apache.commons.lang.SerializationUtils.class org.apache.commons.lang.StringEscapeUtils.class org.apache.commons.lang.StringUtils.class org.apache.commons.lang.SystemUtils.class org.apache.commons.lang.UnhandledException.class org.apache.commons.lang.Validate.class org.apache.commons.lang.WordUtils.class org.apache.commons.lang.builder.CompareToBuilder.class org.apache.commons.lang.builder.EqualsBuilder.class org.apache.commons.lang.builder.HashCodeBuilder.class org.apache.commons.lang.builder.IDKey.class org.apache.commons.lang.builder.ReflectionToStringBuilder.class org.apache.commons.lang.builder.StandardToStringStyle.class org.apache.commons.lang.builder.ToStringBuilder.class org.apache.commons.lang.builder.ToStringStyle.class org.apache.commons.lang.enum.Enum.class org.apache.commons.lang.enum.EnumUtils.class org.apache.commons.lang.enum.ValuedEnum.class org.apache.commons.lang.enums.Enum.class org.apache.commons.lang.enums.EnumUtils.class org.apache.commons.lang.enums.ValuedEnum.class org.apache.commons.lang.exception.CloneFailedException.class org.apache.commons.lang.exception.ExceptionUtils.class org.apache.commons.lang.exception.Nestable.class org.apache.commons.lang.exception.NestableDelegate.class org.apache.commons.lang.exception.NestableError.class org.apache.commons.lang.exception.NestableException.class org.apache.commons.lang.exception.NestableRuntimeException.class org.apache.commons.lang.math.DoubleRange.class org.apache.commons.lang.math.FloatRange.class org.apache.commons.lang.math.Fraction.class org.apache.commons.lang.math.IEEE754rUtils.class org.apache.commons.lang.math.IntRange.class org.apache.commons.lang.math.JVMRandom.class org.apache.commons.lang.math.LongRange.class org.apache.commons.lang.math.NumberRange.class org.apache.commons.lang.math.NumberUtils.class org.apache.commons.lang.math.RandomUtils.class org.apache.commons.lang.math.Range.class org.apache.commons.lang.mutable.Mutable.class org.apache.commons.lang.mutable.MutableBoolean.class org.apache.commons.lang.mutable.MutableByte.class org.apache.commons.lang.mutable.MutableDouble.class org.apache.commons.lang.mutable.MutableFloat.class org.apache.commons.lang.mutable.MutableInt.class org.apache.commons.lang.mutable.MutableLong.class org.apache.commons.lang.mutable.MutableObject.class org.apache.commons.lang.mutable.MutableShort.class org.apache.commons.lang.reflect.ConstructorUtils.class org.apache.commons.lang.reflect.FieldUtils.class org.apache.commons.lang.reflect.MemberUtils.class org.apache.commons.lang.reflect.MethodUtils.class org.apache.commons.lang.text.CompositeFormat.class org.apache.commons.lang.text.ExtendedMessageFormat.class org.apache.commons.lang.text.FormatFactory.class org.apache.commons.lang.text.StrBuilder.class org.apache.commons.lang.text.StrLookup.class org.apache.commons.lang.text.StrMatcher.class org.apache.commons.lang.text.StrSubstitutor.class org.apache.commons.lang.text.StrTokenizer.class org.apache.commons.lang.time.DateFormatUtils.class org.apache.commons.lang.time.DateUtils.class org.apache.commons.lang.time.DurationFormatUtils.class org.apache.commons.lang.time.FastDateFormat.class org.apache.commons.lang.time.StopWatch.class

java2s.com | © Demo Source and Support. All rights reserved.

Источник

Оцените статью