Serialized Form


Package jodd.bean

Class jodd.bean.BeanException extends UncheckedException implements Serializable


Package jodd.compiler

Class jodd.compiler.CompilationException extends java.io.IOException implements Serializable


Package jodd.datetime

Class jodd.datetime.DateTimeStamp extends java.lang.Object implements Serializable

Serialized Fields

year

int year
Year.


month

int month
Month, range: [1 - 12]


day

int day
Day, range: [1 - 31]


hour

int hour
Hour, range: [0 - 23]


minute

int minute
Minute, range [0 - 59]


second

int second
Second, range: [0 - 59]


millisecond

int millisecond
Millisecond, range: [0 - 1000]

Class jodd.datetime.JulianDateStamp extends java.lang.Object implements Serializable

Serialized Fields

integer

int integer
Integer part of the Julian Date (JD).


fraction

double fraction
Fraction part of the Julian Date (JD). Should be always in [0.0, 1.0) range.


Package jodd.exception

Class jodd.exception.UncheckedException extends java.lang.RuntimeException implements Serializable

Serialized Fields

cause

java.lang.Throwable cause

showCauseDetails

boolean showCauseDetails
If set to true stack trace will be enhanced with cause's stack traces.


Package jodd.io

Class jodd.io.AsciiInputStream extends java.io.InputStream implements Serializable

Serialized Fields

strOffset

int strOffset

available

int available

str

java.lang.String str

Class jodd.io.StringInputStream extends java.io.InputStream implements Serializable

Serialized Fields

strOffset

int strOffset

charOffset

int charOffset

available

int available

str

java.lang.String str

Class jodd.io.StringOutputStream extends java.io.OutputStream implements Serializable

Serialized Fields

sb

java.lang.StringBuilder sb
The internal destination StringBuffer.


encoding

java.lang.String encoding

Package jodd.io.findfile

Class jodd.io.findfile.FindFileException extends UncheckedException implements Serializable


Package jodd.mail

Class jodd.mail.MailException extends UncheckedException implements Serializable


Package jodd.mutable

Class jodd.mutable.MutableByte extends java.lang.Number implements Serializable

Serialized Fields

value

byte value
The mutable value.

Class jodd.mutable.MutableDouble extends java.lang.Number implements Serializable

Serialized Fields

value

double value
The mutable value.

Class jodd.mutable.MutableFloat extends java.lang.Number implements Serializable

Serialized Fields

value

float value
The mutable value.

Class jodd.mutable.MutableInteger extends java.lang.Number implements Serializable

Serialized Fields

value

int value
The mutable value.

Class jodd.mutable.MutableLong extends java.lang.Number implements Serializable

Serialized Fields

value

long value
The mutable value.

Class jodd.mutable.MutableShort extends java.lang.Number implements Serializable

Serialized Fields

value

short value
The mutable value.


Package jodd.servlet

Class jodd.servlet.CsrfShield.Token extends java.lang.Object implements Serializable

Serialized Fields

value

java.lang.String value

validUntil

long validUntil

Package jodd.servlet.tag

Class jodd.servlet.tag.FormTag extends javax.servlet.jsp.tagext.BodyTagSupport implements Serializable


Package jodd.typeconverter

Class jodd.typeconverter.TypeConversionException extends UncheckedException implements Serializable


Package jodd.util

Class jodd.util.DateFormatSymbolsEx extends java.text.DateFormatSymbols implements Serializable

Serialized Fields

_months

java.lang.String[] _months

_shortMonths

java.lang.String[] _shortMonths

_weekdays

java.lang.String[] _weekdays

_shortWeekdays

java.lang.String[] _shortWeekdays

_eras

java.lang.String[] _eras

_ampms

java.lang.String[] _ampms

Class jodd.util.MultiComparator extends java.lang.Object implements Serializable

Serialized Fields

comparators

java.util.ArrayList<E> comparators

Package jodd.util.collection

Class jodd.util.collection.ArrayEnumeration extends java.lang.Object implements Serializable

Serialized Fields

array

java.lang.Object[] array

ndx

int ndx

endNdx

int endNdx

Class jodd.util.collection.ArrayIterator extends java.lang.Object implements Serializable

Serialized Fields

array

java.lang.Object[] array

ndx

int ndx

endNdx

int endNdx

Class jodd.util.collection.IntHashMap extends java.util.AbstractMap implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitutes the IntHashMap instance from a stream (i.e., deserialize it).

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the state of the IntHashMap instance to a stream (i.e., serialize it).

Context The capacity of the IntHashMap (the length of the bucket array) is emitted (int), followed by the size of the IntHashMap (the number of key-value mappings), followed by the key (Object) and value (Object) for each key-value mapping represented by the IntHashMap The key-value mappings are emitted in no particular order.

Throws:
java.io.IOException
Serialized Fields

threshold

int threshold
The table is rehashed when its size exceeds this threshold. (The value of this field is (int)(capacity * loadFactor).)


loadFactor

float loadFactor
The load factor for the hashtable.

Class jodd.util.collection.SortedArrayList extends java.util.ArrayList<E> implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator



Copyright © 2003-2012 Jodd Team