public abstract class AbstractRuntimeObjectModel extends java.lang.Object implements RuntimeObjectModel
RuntimeObjectModel
.Constructor and Description |
---|
AbstractRuntimeObjectModel() |
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
getProperty(java.lang.Object target,
java.lang.Object propertyObj) |
boolean |
isCollection(java.lang.Object target)
Checks if an object is a
Collection or is backed by one. |
boolean |
isDate(java.lang.Object target)
Checks if the provided object represents a date or calendar.
|
boolean |
isNumber(java.lang.Object target)
Checks if the provided object represents a number or not.
|
boolean |
isPrimitive(java.lang.Object obj)
Checks if the provided object represents a primitive data type or not.
|
java.lang.Object |
resolveProperty(java.lang.Object target,
java.lang.Object property)
Resolve a property of a target object and return its value.
|
boolean |
toBoolean(java.lang.Object object)
Convert the given object to a boolean value
|
java.util.Collection<java.lang.Object> |
toCollection(java.lang.Object object)
Force the conversion of the object to a collection
|
java.util.Date |
toDate(java.lang.Object object)
Convert the given object to a
Date object |
java.time.Instant |
toInstant(java.lang.Object object)
Convert the given object to an
Instant object |
java.util.Map |
toMap(java.lang.Object object)
Force the conversion of the target object to a map
|
java.lang.Number |
toNumber(java.lang.Object object)
Coerce the object to a numeric value
|
java.lang.String |
toString(java.lang.Object target)
Convert the given object to a string.
|
public boolean isPrimitive(java.lang.Object obj)
RuntimeObjectModel
isPrimitive
in interface RuntimeObjectModel
obj
- the target objecttrue
if the target
is a primitive, false
otherwisepublic boolean isDate(java.lang.Object target)
RuntimeObjectModel
isDate
in interface RuntimeObjectModel
target
- the target objecttrue
if the target
is a date or calendar, false
otherwisepublic boolean isNumber(java.lang.Object target)
RuntimeObjectModel
isNumber
in interface RuntimeObjectModel
target
- the target objecttrue
if the target
is a number, false
otherwisepublic boolean isCollection(java.lang.Object target)
RuntimeObjectModel
Collection
or is backed by one.isCollection
in interface RuntimeObjectModel
target
- the target objecttrue
if the target
is a collection or is backed by one, false
otherwisepublic java.lang.Object resolveProperty(java.lang.Object target, java.lang.Object property)
RuntimeObjectModel
resolveProperty
in interface RuntimeObjectModel
target
- the target objectproperty
- the property to be resolvedpublic boolean toBoolean(java.lang.Object object)
RuntimeObjectModel
toBoolean
in interface RuntimeObjectModel
object
- the target objectpublic java.lang.Number toNumber(java.lang.Object object)
RuntimeObjectModel
toNumber
in interface RuntimeObjectModel
object
- the target objectpublic java.util.Date toDate(java.lang.Object object)
RuntimeObjectModel
Date
objecttoDate
in interface RuntimeObjectModel
object
- the target objectobject
public java.time.Instant toInstant(java.lang.Object object)
RuntimeObjectModel
Instant
objecttoInstant
in interface RuntimeObjectModel
object
- the target objectobject
public java.lang.String toString(java.lang.Object target)
RuntimeObjectModel
toString
in interface RuntimeObjectModel
target
- the target objectpublic java.util.Collection<java.lang.Object> toCollection(java.lang.Object object)
RuntimeObjectModel
toCollection
in interface RuntimeObjectModel
object
- the target objectpublic java.util.Map toMap(java.lang.Object object)
RuntimeObjectModel
toMap
in interface RuntimeObjectModel
object
- the target objectprotected java.lang.Object getProperty(java.lang.Object target, java.lang.Object propertyObj)
Copyright © 2022 The Apache Software Foundation. All rights reserved.