Package oracle.rules.rl
Class RLProperty
java.lang.Object
oracle.rules.rl.RLProperty
- All Implemented Interfaces:
Serializable
Part of reflection API for RL classes.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGet the property as an Object from the given RLObject.boolean
getBoolean
(RLObject obj) Get boolean property.byte
Get byte property.char
Get char property.Get the RLClass that declares this property.double
Get double property.float
Get float property.int
Get int property.long
Get long property.getName()
Get property nameGet the RLClass of a property that references an RLClass object.short
Get short property.getType()
get the Class of a primitive or Java type propertyvoid
Set property to Object.void
setBoolean
(RLObject obj, boolean value) Set property to boolean.void
Set property to byte.void
Set property to char.void
Set property to double.void
Set property to float.void
Set property to int.void
Set property to long.void
Set property to short.toString()
-
Method Details
-
getDeclaringClass
Get the RLClass that declares this property.- Returns:
- RLClass
-
getName
Get property name- Returns:
- String name of property
-
getType
get the Class of a primitive or Java type property- Returns:
- null if property is ref to RLClass
- Throws:
JavaException
- wrapping a ClassNotFoundException
-
getRLClassType
Get the RLClass of a property that references an RLClass object.- Returns:
- null if property is not ref to RLClass
-
get
Get the property as an Object from the given RLObject. Primitives are wrapped.- Parameters:
obj
- RLObject containing property- Returns:
- property Object
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass
-
getBoolean
Get boolean property.- Parameters:
obj
- RLObject- Returns:
- boolean value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not boolean
-
getByte
Get byte property.- Parameters:
obj
- RLObject- Returns:
- byte value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not byte
-
getChar
Get char property.- Parameters:
obj
- RLObject- Returns:
- char value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not char
-
getShort
Get short property.- Parameters:
obj
- RLObject- Returns:
- short value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not short
-
getInt
Get int property.- Parameters:
obj
- RLObject- Returns:
- int value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not int
-
getLong
Get long property.- Parameters:
obj
- RLObject- Returns:
- long value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not long
-
getDouble
Get double property.- Parameters:
obj
- RLObject- Returns:
- double value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not double
-
getFloat
Get float property.- Parameters:
obj
- RLObject- Returns:
- float value
- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass, or property is not float
-
set
Set property to Object. Primitive type properties may be set to wrapped values.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setBoolean
Set property to boolean.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setByte
Set property to byte.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setChar
Set property to char.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setShort
Set property to short.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setInt
Set property to int.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setLong
Set property to long.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setDouble
Set property to double.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
setFloat
Set property to float.- Parameters:
obj
- RLObjectvalue
- new property value- Throws:
RLIllegalArgumentException
- if obj is of wrong RLClass or if value is of wrong type.
-
toString
-