Package com.avoka.core.util
Class EntityArchiveUtils.Property
- java.lang.Object
-
- com.avoka.core.util.EntityArchiveUtils.Property
-
- Enclosing class:
- EntityArchiveUtils
public static class EntityArchiveUtils.Property extends Object
A property class.
-
-
Constructor Summary
Constructors Constructor Description Property()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Object
getObjectValue()
Class
getType()
String
getValue()
void
setName(String name)
void
setObjectValue(Object objectValue)
void
setType(Class type)
void
setValue(String value)
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name
- the name to set
-
getValue
public String getValue()
- Returns:
- the value
-
setValue
public void setValue(String value)
- Parameters:
value
- the value to set
-
getObjectValue
public Object getObjectValue()
- Returns:
- the objectValue
- Since:
- 5.1.5.1
-
setObjectValue
public void setObjectValue(Object objectValue)
- Parameters:
objectValue
- the value to set- Since:
- 5.1.5.1
-
getType
public Class getType()
- Returns:
- the type
-
setType
public void setType(Class type)
- Parameters:
type
- the type to set
-
-