Serialized Form


Package org.apache.commons.lang

Class org.apache.commons.lang.CharRange extends java.lang.Object implements Serializable

serialVersionUID: 8270183163158333422l

Serialized Fields

start

char start
The first character, inclusive, in the range.


end

char end
The last character, inclusive, in the range.


negated

boolean negated
True if the range is everything except the characters specified.

Class org.apache.commons.lang.CharSet extends java.lang.Object implements Serializable

serialVersionUID: 5947847346149275958l

Serialized Fields

set

java.util.Set set
The set of CharRange objects.

Class org.apache.commons.lang.IllegalClassException extends java.lang.IllegalArgumentException implements Serializable

serialVersionUID: 8063272569377254819l

Class org.apache.commons.lang.IncompleteArgumentException extends java.lang.IllegalArgumentException implements Serializable

serialVersionUID: 4954193403612068178l

Class org.apache.commons.lang.NotImplementedException extends java.lang.UnsupportedOperationException implements Serializable

serialVersionUID: -6894122266938754088l

Serialized Fields

delegate

NestableDelegate delegate
The exception helper to delegate nested exception handling to.


cause

java.lang.Throwable cause
Holds the reference to the exception or error that caused this exception to be thrown.

Class org.apache.commons.lang.NullArgumentException extends java.lang.IllegalArgumentException implements Serializable

serialVersionUID: 1174360235354917591l

Class org.apache.commons.lang.ObjectUtils.Null extends java.lang.Object implements Serializable

serialVersionUID: 7092611880189329093l

Serialization Methods

readResolve

private java.lang.Object readResolve()

Ensure singleton.

Class org.apache.commons.lang.SerializationException extends NestableRuntimeException implements Serializable

serialVersionUID: 4029025366392702726l

Class org.apache.commons.lang.UnhandledException extends NestableRuntimeException implements Serializable

serialVersionUID: 1832101364842773720l


Package org.apache.commons.lang.builder

Class org.apache.commons.lang.builder.StandardToStringStyle extends ToStringStyle implements Serializable

serialVersionUID: 1l

Class org.apache.commons.lang.builder.ToStringStyle extends java.lang.Object implements Serializable

Serialized Fields

useFieldNames

boolean useFieldNames
Whether to use the field names, the default is true.


useClassName

boolean useClassName
Whether to use the class name, the default is true.


useShortClassName

boolean useShortClassName
Whether to use short class names, the default is false.


useIdentityHashCode

boolean useIdentityHashCode
Whether to use the identity hash code, the default is true.


contentStart

java.lang.String contentStart
The content start '['.


contentEnd

java.lang.String contentEnd
The content end ']'.


fieldNameValueSeparator

java.lang.String fieldNameValueSeparator
The field name value separator '='.


fieldSeparatorAtStart

boolean fieldSeparatorAtStart
Whether the field separator should be added before any other fields.


fieldSeparatorAtEnd

boolean fieldSeparatorAtEnd
Whether the field separator should be added after any other fields.


fieldSeparator

java.lang.String fieldSeparator
The field separator ','.


arrayStart

java.lang.String arrayStart
The array start '{'.


arraySeparator

java.lang.String arraySeparator
The array separator ','.


arrayContentDetail

boolean arrayContentDetail
The detail for array content.


arrayEnd

java.lang.String arrayEnd
The array end '}'.


defaultFullDetail

boolean defaultFullDetail
The value to use when fullDetail is null, the default value is true.


nullText

java.lang.String nullText
The null text '<null>'.


sizeStartText

java.lang.String sizeStartText
The summary size text start '.


sizeEndText

java.lang.String sizeEndText
The summary size text start '>'.


summaryObjectStartText

java.lang.String summaryObjectStartText
The summary object text start '<'.


summaryObjectEndText

java.lang.String summaryObjectEndText
The summary object text start '>'.


Package org.apache.commons.lang.enum

Class org.apache.commons.lang.enum.Enum extends java.lang.Object implements Serializable

serialVersionUID: -487045951170455942l

Serialization Methods

readResolve

protected java.lang.Object readResolve()
Deprecated. 

Handle the deserialization of the class to ensure that multiple copies are not wastefully created, or illegal enum types created.

Serialized Fields

iName

java.lang.String iName
Deprecated. 
The string representation of the Enum.

Class org.apache.commons.lang.enum.ValuedEnum extends Enum implements Serializable

serialVersionUID: -7129650521543789085l

Serialized Fields

iValue

int iValue
Deprecated. 
The value contained in enum.


Package org.apache.commons.lang.enums

Class org.apache.commons.lang.enums.Enum extends java.lang.Object implements Serializable

serialVersionUID: -487045951170455942l

Serialization Methods

readResolve

protected java.lang.Object readResolve()

Handle the deserialization of the class to ensure that multiple copies are not wastefully created, or illegal enum types created.

Serialized Fields

iName

java.lang.String iName
The string representation of the Enum.

Class org.apache.commons.lang.enums.ValuedEnum extends Enum implements Serializable

serialVersionUID: -7129650521543789085l

Serialized Fields

iValue

int iValue
The value contained in enum.


Package org.apache.commons.lang.exception

Class org.apache.commons.lang.exception.NestableDelegate extends java.lang.Object implements Serializable

serialVersionUID: 1l

Serialized Fields

nestable

java.lang.Throwable nestable
Holds the reference to the exception or error that we're wrapping (which must be a Nestable implementation).

Class org.apache.commons.lang.exception.NestableError extends java.lang.Error implements Serializable

serialVersionUID: 1l

Serialized Fields

delegate

NestableDelegate delegate
The helper instance which contains much of the code which we delegate to.


cause

java.lang.Throwable cause
Holds the reference to the exception or error that caused this exception to be thrown.

Class org.apache.commons.lang.exception.NestableException extends java.lang.Exception implements Serializable

serialVersionUID: 1l

Serialized Fields

delegate

NestableDelegate delegate
The helper instance which contains much of the code which we delegate to.


cause

java.lang.Throwable cause
Holds the reference to the exception or error that caused this exception to be thrown.

Class org.apache.commons.lang.exception.NestableRuntimeException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1l

Serialized Fields

delegate

NestableDelegate delegate
The helper instance which contains much of the code which we delegate to.


cause

java.lang.Throwable cause
Holds the reference to the exception or error that caused this exception to be thrown.


Package org.apache.commons.lang.math

Class org.apache.commons.lang.math.DoubleRange extends Range implements Serializable

serialVersionUID: 71849363892740l

Serialized Fields

min

double min
The minimum number in this range (inclusive).


max

double max
The maximum number in this range (inclusive).

Class org.apache.commons.lang.math.FloatRange extends Range implements Serializable

serialVersionUID: 71849363892750l

Serialized Fields

min

float min
The minimum number in this range (inclusive).


max

float max
The maximum number in this range (inclusive).

Class org.apache.commons.lang.math.Fraction extends java.lang.Number implements Serializable

serialVersionUID: 65382027393090l

Serialized Fields

numerator

int numerator
The numerator number part of the fraction (the three in three sevenths).


denominator

int denominator
The denominator number part of the fraction (the seven in three sevenths).

Class org.apache.commons.lang.math.IntRange extends Range implements Serializable

serialVersionUID: 71849363892730l

Serialized Fields

min

int min
The minimum number in this range (inclusive).


max

int max
The maximum number in this range (inclusive).

Class org.apache.commons.lang.math.JVMRandom extends java.util.Random implements Serializable

serialVersionUID: 1l

Serialized Fields

constructed

boolean constructed
Ensures that only the constructor can call reseed.

Class org.apache.commons.lang.math.LongRange extends Range implements Serializable

serialVersionUID: 71849363892720l

Serialized Fields

min

long min
The minimum number in this range (inclusive).


max

long max
The maximum number in this range (inclusive).

Class org.apache.commons.lang.math.NumberRange extends Range implements Serializable

serialVersionUID: 71849363892710l

Serialized Fields

min

java.lang.Number min
The minimum number in this range.


max

java.lang.Number max
The maximum number in this range.


Package org.apache.commons.lang.mutable

Class org.apache.commons.lang.mutable.MutableBoolean extends java.lang.Object implements Serializable

serialVersionUID: -4830728138360036487l

Serialized Fields

value

boolean value
The mutable value.

Class org.apache.commons.lang.mutable.MutableByte extends java.lang.Number implements Serializable

serialVersionUID: -1585823265l

Serialized Fields

value

byte value
The mutable value.

Class org.apache.commons.lang.mutable.MutableDouble extends java.lang.Number implements Serializable

serialVersionUID: 1587163916l

Serialized Fields

value

double value
The mutable value.

Class org.apache.commons.lang.mutable.MutableFloat extends java.lang.Number implements Serializable

serialVersionUID: 5787169186l

Serialized Fields

value

float value
The mutable value.

Class org.apache.commons.lang.mutable.MutableInt extends java.lang.Number implements Serializable

serialVersionUID: 512176391864l

Serialized Fields

value

int value
The mutable value.

Class org.apache.commons.lang.mutable.MutableLong extends java.lang.Number implements Serializable

serialVersionUID: 62986528375l

Serialized Fields

value

long value
The mutable value.

Class org.apache.commons.lang.mutable.MutableObject extends java.lang.Object implements Serializable

serialVersionUID: 86241875189l

Serialized Fields

value

java.lang.Object value
The mutable value.

Class org.apache.commons.lang.mutable.MutableShort extends java.lang.Number implements Serializable

serialVersionUID: -2135791679l

Serialized Fields

value

short value
The mutable value.


Package org.apache.commons.lang.text

Class org.apache.commons.lang.text.CompositeFormat extends java.text.Format implements Serializable

serialVersionUID: -4329119827877627683l

Serialized Fields

parser

java.text.Format parser
The parser to use.


formatter

java.text.Format formatter
The formatter to use.

Class org.apache.commons.lang.text.ExtendedMessageFormat extends java.text.MessageFormat implements Serializable

serialVersionUID: -2362048321261811743l

Serialized Fields

toPattern

java.lang.String toPattern

registry

java.util.Map registry


Package org.apache.commons.lang.time

Class org.apache.commons.lang.time.FastDateFormat extends java.text.Format implements Serializable

serialVersionUID: 1l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Create the object after serialization. This implementation reinitializes the transient properties.

Throws:
java.io.IOException - if there is an IO issue.
java.lang.ClassNotFoundException - if a class cannot be found.
Serialized Fields

mPattern

java.lang.String mPattern
The pattern.


mTimeZone

java.util.TimeZone mTimeZone
The time zone.


mTimeZoneForced

boolean mTimeZoneForced
Whether the time zone overrides any on Calendars.


mLocale

java.util.Locale mLocale
The locale.


mLocaleForced

boolean mLocaleForced
Whether the locale overrides the default.



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