Serialized Form
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]
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.
cause
java.lang.Throwable cause
showCauseDetails
boolean showCauseDetails
- If set to
true stack trace will be enhanced with cause's stack traces.
strOffset
int strOffset
available
int available
str
java.lang.String str
strOffset
int strOffset
charOffset
int charOffset
available
int available
str
java.lang.String str
sb
java.lang.StringBuilder sb
- The internal destination StringBuffer.
encoding
java.lang.String encoding
value
byte value
- The mutable value.
value
double value
- The mutable value.
value
float value
- The mutable value.
value
int value
- The mutable value.
value
long value
- The mutable value.
value
short value
- The mutable value.
value
java.lang.String value
validUntil
long validUntil
|
Package jodd.typeconverter |
_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
comparators
java.util.ArrayList<E> comparators
|
Package jodd.util.collection |
array
java.lang.Object[] array
ndx
int ndx
endNdx
int endNdx
array
java.lang.Object[] array
ndx
int ndx
endNdx
int endNdx
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
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.
comparator
java.util.Comparator<T> comparator
Copyright © 2003-2012 Jodd Team