Package org.apache.openjpa.lib.conf
Class ClassListValue
- java.lang.Object
-
- org.apache.openjpa.lib.conf.Value
-
- org.apache.openjpa.lib.conf.ClassListValue
-
- All Implemented Interfaces:
java.lang.Cloneable
public class ClassListValue extends Value
-
-
Constructor Summary
Constructors Constructor Description ClassListValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>[]
get()
Get the actual data stored in this value.protected java.lang.String
getInternalString()
Return the internal string form of this value.java.lang.Class<java.lang.Class[]>
getValueType()
Returns the type of the property that this Value represents.void
set(java.lang.Class<?>[] values)
protected void
setInternalObject(java.lang.Object obj)
Set this value from an object.protected void
setInternalString(java.lang.String val)
Set this value from the given string.-
Methods inherited from class org.apache.openjpa.lib.conf.Value
addEquivalentKey, addListener, alias, alias, assertChangeable, clone, equals, getAliases, getDefault, getEquivalentKeys, getInstantiatingGetter, getListeners, getLoadKey, getOriginalValue, getProperty, getPropertyKeys, getScope, getString, hashCode, hide, isAliasListComprehensive, isDynamic, isHidden, isPrivate, makePrivate, matches, removeListener, setAlias, setAlias, setAliases, setAliasListComprehensive, setDefault, setDynamic, setInstantiatingGetter, setLoadKey, setObject, setProperty, setScope, setString, toString, unalias, unalias, valueChanged
-
-
-
-
Method Detail
-
set
public void set(java.lang.Class<?>[] values)
-
get
public java.lang.Class<?>[] get()
Description copied from class:Value
Get the actual data stored in this value.
-
getValueType
public java.lang.Class<java.lang.Class[]> getValueType()
Description copied from class:Value
Returns the type of the property that this Value represents.- Specified by:
getValueType
in classValue
-
getInternalString
protected java.lang.String getInternalString()
Description copied from class:Value
Return the internal string form of this value.- Specified by:
getInternalString
in classValue
-
setInternalString
protected void setInternalString(java.lang.String val)
Description copied from class:Value
Set this value from the given string.- Specified by:
setInternalString
in classValue
-
setInternalObject
protected void setInternalObject(java.lang.Object obj)
Description copied from class:Value
Set this value from an object.- Specified by:
setInternalObject
in classValue
-
-