Serialized Form


Package org.apache.wicket.util

Class org.apache.wicket.util.LazyInitializer extends Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.collections

Class org.apache.wicket.util.collections.ArrayListStack extends ArrayList<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.collections.ConcurrentHashSet extends AbstractSet<E> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream inputStream)
                 throws ClassNotFoundException,
                        IOException
Re-constitute the HashSet instance from a stream.

Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException

Class org.apache.wicket.util.collections.IntHashMap extends Object implements Serializable

serialVersionUID: 362498820763181265L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Reconstitute the HashMap instance from a stream (i.e., deserialize it).

Throws:
IOException
ClassNotFoundException

writeObject

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

Serial Data:
The capacity of the HashMap (the length of the bucket array) is emitted (int), followed by the size of the HashMap (the number of key-value mappings), followed by the key (Object) and value (Object) for each key-value mapping represented by the HashMap The key-value mappings are emitted in the order that they are returned by entrySet().iterator().
Throws:
IOException
Serialized Fields

threshold

int threshold
The next size value at which to resize (capacity * load factor).

 

loadFactor

float loadFactor
The load factor for the hash table.

 

Class org.apache.wicket.util.collections.MicroMap extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

key

Object key
The one and only key in this tiny map


value

Object value
The value for the only key in this tiny map

Class org.apache.wicket.util.collections.MiniMap extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

keys

Object[] keys
The array of keys. Keys that are null are not used.


values

Object[] values
The array of values which correspond by index with the keys array.


size

int size
The number of valid entries


lastSearchIndex

int lastSearchIndex
The last search index. This makes putting and getting more efficient.

Class org.apache.wicket.util.collections.MostRecentlyUsedMap extends LinkedHashMap<K,V> implements Serializable

serialVersionUID: 1L

Serialized Fields

removedValue

Object removedValue
Value most recently removed from map


maxEntries

int maxEntries
Maximum number of entries allowed in this map

Class org.apache.wicket.util.collections.MultiMap extends HashMap<K,List<V>> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.convert

Class org.apache.wicket.util.convert.ConversionException extends RuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

converter

IConverter<C> converter
The converter that was used.


format

Format format
Pattern that was used for conversion.


locale

Locale locale
Locale that was used for conversion.


sourceValue

Object sourceValue
The value that was tried to convert.


targetType

Class<T> targetType
Target type for the failed conversion.


resourceKey

String resourceKey
Resource key for the message that should be displayed


vars

Map<K,V> vars
Variable map to use in variable substitution

Class org.apache.wicket.util.convert.MaskConverter extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

maskFormatter

MaskFormatter maskFormatter
Object that knows all about masks.


Package org.apache.wicket.util.convert.converter

Class org.apache.wicket.util.convert.converter.AbstractConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.AbstractDecimalConverter extends AbstractNumberConverter<N extends Number> implements Serializable

serialVersionUID: 1L

Serialized Fields

numberFormats

Map<K,V> numberFormats
The date format to use

Class org.apache.wicket.util.convert.converter.AbstractIntegerConverter extends AbstractNumberConverter<I extends Number> implements Serializable

serialVersionUID: 1L

Serialized Fields

numberFormats

Map<K,V> numberFormats
The date format to use

Class org.apache.wicket.util.convert.converter.AbstractNumberConverter extends AbstractConverter<N extends Number> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.BigDecimalConverter extends AbstractDecimalConverter<BigDecimal> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.BooleanConverter extends AbstractConverter<Boolean> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.ByteConverter extends AbstractIntegerConverter<Byte> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.CalendarConverter extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

dateConverter

IConverter<C> dateConverter

Class org.apache.wicket.util.convert.converter.CharacterConverter extends AbstractConverter<Character> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.DateConverter extends AbstractConverter<Date> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.DoubleConverter extends AbstractDecimalConverter<Double> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.FloatConverter extends AbstractDecimalConverter<Float> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.IntegerConverter extends AbstractIntegerConverter<Integer> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.LongConverter extends AbstractIntegerConverter<Long> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.ShortConverter extends AbstractIntegerConverter<Short> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.SqlDateConverter extends AbstractConverter<Date> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.SqlTimeConverter extends AbstractConverter<Time> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converter.SqlTimestampConverter extends AbstractConverter<Timestamp> implements Serializable

serialVersionUID: 1L

Serialized Fields

dateFormat

int dateFormat

timeFormat

int timeFormat

Class org.apache.wicket.util.convert.converter.ZeroPaddingIntegerConverter extends AbstractIntegerConverter<Integer> implements Serializable

serialVersionUID: 1L

Serialized Fields

zeroPadLength

int zeroPadLength

Package org.apache.wicket.util.diff

Class org.apache.wicket.util.diff.DifferentiationFailedException extends DiffException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.diff.DiffException extends Exception implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.diff.PatchFailedException extends DiffException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.file

Class org.apache.wicket.util.file.File extends File implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

public Object readObject()
                  throws IOException,
                         ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

public void writeObject(Serializable object)
                 throws IOException
Throws:
IOException

Class org.apache.wicket.util.file.Folder extends File implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.io

Package org.apache.wicket.util.lang

Class org.apache.wicket.util.lang.Bytes extends LongValue implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.lang.EnumeratedType extends StringValue implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

public Object readResolve()
                   throws ObjectStreamException
Method to ensure that == works after deserialization

Throws:
ObjectStreamException

Class org.apache.wicket.util.lang.PackageName extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

Package org.apache.wicket.util.listener

Class org.apache.wicket.util.listener.ChangeListenerSet extends ListenerCollection<IChangeListener> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.listener.ListenerCollection extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

listeners

List<E> listeners
list of listeners


Package org.apache.wicket.util.parse.metapattern

Class org.apache.wicket.util.parse.metapattern.BooleanGroup extends Group implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.FloatingPointGroup extends Group implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.Group extends MetaPattern implements Serializable

serialVersionUID: 1L

Serialized Fields

group

int group
The capturing group that this Group is bound to.

Class org.apache.wicket.util.parse.metapattern.GroupAlreadyBoundException extends RuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.GroupNotBoundException extends RuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.IntegerGroup extends Group implements Serializable

serialVersionUID: 1L

Serialized Fields

radix

int radix
The radix to use when converting Strings captured by this group.

Class org.apache.wicket.util.parse.metapattern.MetaPattern extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pattern

Pattern pattern
Compiled regular expression pattern, or null if patterns variable is valid instead


patterns

List<E> patterns
List of patterns, or null if pattern variable is valid instead


compiledPattern

Pattern compiledPattern
The compiled MetaPattern

Class org.apache.wicket.util.parse.metapattern.OptionalMetaPattern extends MetaPattern implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.resource

Class org.apache.wicket.util.resource.AbstractResourceStream extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

locale

Locale locale

style

String style

variation

String variation

Class org.apache.wicket.util.resource.AbstractStringResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

charsetName

String charsetName
Charset name for resource


contentType

String contentType
MIME content type


lastModified

Time lastModified
The last time this stylesheet was modified

Class org.apache.wicket.util.resource.FileResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

file

File file
Any associated file

Class org.apache.wicket.util.resource.ResourceStreamNotFoundException extends Exception implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.resource.StringBufferResourceStream extends AbstractStringResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

buffer

AppendingStringBuffer buffer
Stylesheet information

Class org.apache.wicket.util.resource.StringResourceStream extends AbstractStringResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

string

CharSequence string
The string resource

Class org.apache.wicket.util.resource.XSLTResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.resource.ZipResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.string

Class org.apache.wicket.util.string.AbstractStringList extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.string.AppendingStringBuffer extends Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
readObject is called to restore the state of the AppendingStringBuffer from a stream.

Throws:
ClassNotFoundException
IOException
Serialized Fields

value

char[] value
The value is used for character storage.

 

count

int count
The count is the number of characters in the buffer.

 

Class org.apache.wicket.util.string.StringList extends AbstractStringList implements Serializable

serialVersionUID: 1L

Serialized Fields

strings

List<E> strings

totalLength

int totalLength

Class org.apache.wicket.util.string.StringValue extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

locale

Locale locale
Locale to be used for formatting and parsing.


text

String text
The underlying string.

Class org.apache.wicket.util.string.StringValueConversionException extends ConversionException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.time

Class org.apache.wicket.util.time.Duration extends org.apache.wicket.util.time.AbstractTimeValue implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.time.Time extends org.apache.wicket.util.time.AbstractTime implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.time.TimeFrame extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

end

Time end
end of this TimeFrame


start

Time start
beginning of this TimeFrame

Class org.apache.wicket.util.time.TimeMap extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

sources

Map<K,V> sources
Map from ITimeFrameSource implementing objects to Object values.

Class org.apache.wicket.util.time.TimeOfDay extends org.apache.wicket.util.time.AbstractTime implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.time.TimeOfDay.Meridian extends EnumeratedType implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.upload

Class org.apache.wicket.util.upload.DiskFileItem extends Object implements Serializable

serialVersionUID: 2237570099615271025L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Reads the state of this object during deserialization.

Throws:
IOException - if an error occurs.
ClassNotFoundException - if class cannot be found.

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Writes the state of this object during serialization.

Throws:
IOException - if an error occurs.
Serialized Fields

fieldName

String fieldName
The name of the form field as provided by the browser.


contentType

String contentType
The content type passed by the browser, or null if not defined.


isFormField

boolean isFormField
Whether or not this item is a simple form field.


fileName

String fileName
The original filename in the user's filesystem.


size

long size
The size of the item, in bytes. This is used to cache the size when a file item is moved from its original location.


sizeThreshold

int sizeThreshold
The threshold above which uploads will be stored on disk.


repository

File repository
The directory in which uploaded files will be stored, if stored on disk.


cachedContent

byte[] cachedContent
Cached contents of the file.


dfosFile

File dfosFile
File to allow for serialization of the content of this item.


headers

FileItemHeaders headers
The file items headers.

Class org.apache.wicket.util.upload.FileItemHeadersImpl extends Object implements Serializable

serialVersionUID: -4455695752627032559L

Serialized Fields

headerNameToValueListMap

Map<K,V> headerNameToValueListMap
Map of String keys to a List of String instances.


headerNameList

List<E> headerNameList
List to preserve order of headers as added. This would not be needed if a LinkedHashMap could be used, but don't want to depend on 1.4.

Class org.apache.wicket.util.upload.FileItemStream.ItemSkippedException extends IOException implements Serializable

serialVersionUID: -7280778431581963740L

Class org.apache.wicket.util.upload.FileUploadBase.FileSizeLimitExceededException extends FileUploadBase.SizeException implements Serializable

serialVersionUID: 8150776562029630058L

Class org.apache.wicket.util.upload.FileUploadBase.FileUploadIOException extends IOException implements Serializable

serialVersionUID: -7047616958165584154L

Serialized Fields

cause

FileUploadException cause
The exceptions cause; we overwrite the parent classes field, which is available since Java 1.4 only.

Class org.apache.wicket.util.upload.FileUploadBase.InvalidContentTypeException extends FileUploadException implements Serializable

serialVersionUID: -9073026332015646668L

Class org.apache.wicket.util.upload.FileUploadBase.IOFileUploadException extends FileUploadException implements Serializable

serialVersionUID: 1749796615868477269L

Serialized Fields

cause

IOException cause
The exceptions cause; we overwrite the parent classes field, which is available since Java 1.4 only.

Class org.apache.wicket.util.upload.FileUploadBase.SizeException extends FileUploadException implements Serializable

serialVersionUID: 1L

Serialized Fields

actual

long actual
The actual size of the request.


permitted

long permitted
The maximum permitted size of the request.

Class org.apache.wicket.util.upload.FileUploadBase.SizeLimitExceededException extends FileUploadBase.SizeException implements Serializable

serialVersionUID: -2474893167098052828L

Class org.apache.wicket.util.upload.FileUploadException extends Exception implements Serializable

serialVersionUID: 8881893724388807504L

Serialized Fields

cause

Throwable cause
The exceptions cause. We overwrite the cause of the super class, which isn't available in Java 1.3.

Class org.apache.wicket.util.upload.MultipartFormInputStream.IllegalBoundaryException extends IOException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.upload.MultipartFormInputStream.MalformedStreamException extends IOException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.value

Class org.apache.wicket.util.value.AttributeMap extends ValueMap implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.value.CopyOnWriteValueMap extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

wrapped

IValueMap wrapped
the wrapped IValueMap

Class org.apache.wicket.util.value.IntValue extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

value

int value
the int value

Class org.apache.wicket.util.value.LongValue extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

value

long value
the long value

Class org.apache.wicket.util.value.ValueMap extends LinkedHashMap<String,Object> implements Serializable

serialVersionUID: 1L

Serialized Fields

immutable

boolean immutable
true if this ValueMap has been made immutable.



Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.