public interface ProxyManager
Modifier and Type | Method and Description |
---|---|
Object |
copyArray(Object orig)
Return a new array of the same component type as the given array
and containing the same elements.
|
Calendar |
copyCalendar(Calendar orig)
Return a copy of the given calendar with the same information.
|
Collection |
copyCollection(Collection orig)
Return a new collection of the same type as the given one
with a copy of all contained elements.
|
Object |
copyCustom(Object orig)
Return a copy of the given object with the same information, or null if
this manager cannot copy the object.
|
Date |
copyDate(Date orig)
Return a copy of the given date with the same information.
|
Map |
copyMap(Map orig)
Return a new map of the same type as the given one
with a copy of all contained key/value pairs.
|
boolean |
getDelayCollectionLoading()
Returns whether this proxy manager is enabled for delayed collection
loading.
|
Proxy |
newCalendarProxy(Class type,
TimeZone timeZone)
Return a new calendar proxy.
|
Proxy |
newCollectionProxy(Class type,
Class elementType,
Comparator compare,
boolean autoOff)
Return a proxy for the given collection type.
|
Proxy |
newCustomProxy(Object obj,
boolean autoOff)
Return a proxy for the given object, or null if this manager cannot
proxy the object.
|
Proxy |
newDateProxy(Class type)
Return a new date proxy.
|
Proxy |
newMapProxy(Class type,
Class keyType,
Class valueType,
Comparator compare,
boolean autoOff)
Return a proxy for the given map type.
|
Object copyArray(Object orig)
Calendar copyCalendar(Calendar orig)
Collection copyCollection(Collection orig)
Proxy newCollectionProxy(Class type, Class elementType, Comparator compare, boolean autoOff)
Map copyMap(Map orig)
Proxy newMapProxy(Class type, Class keyType, Class valueType, Comparator compare, boolean autoOff)
Object copyCustom(Object orig)
Proxy newCustomProxy(Object obj, boolean autoOff)
boolean getDelayCollectionLoading()
Copyright © 2006–2020 Apache Software Foundation. All rights reserved.