Package oracle.rules.rl
Class RLClass
java.lang.Object
oracle.rules.rl.RLClass
- All Implemented Interfaces:
Serializable
Part of reflection API for RL classes.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic RLClass
forName
(String className, RuleSession session) Get the RLClass given its fully qualified name and rule session in which it is defined.If this RLClass is an array, get the type of the array componentGet all RLPropertys declared by this RLClassgetDeclaredProperty
(String name) Get the RLProperty this RLClass declares by namegetName()
Get fully qualified name of this RLClassGet all RLPropertys implemented by this RLClass or a superclassgetProperty
(String name) Get property implemented by this RLClass or a superclass by nameGet the RuleSession that defines this RLClassGet superclassboolean
isArray()
Test whether this RLClass is an arrayboolean
isAssignableFrom
(RLClass cls) Test whether given RLClass can be assigned to this RLClassboolean
isInstance
(RLObject obj) Test whether given RLObject is an instance of this RLClassDeprecated.create and return a new instance (RLObject) of this RLClass, initialized per the RL class defintion.
-
Method Details
-
forName
Get the RLClass given its fully qualified name and rule session in which it is defined.- Parameters:
className
- fully qualified name Stringsession
- RuleSession- Returns:
- RLClass
- Throws:
UndefinedException
-
getComponentType
If this RLClass is an array, get the type of the array component- Returns:
- RLClass
-
isArray
public boolean isArray()Test whether this RLClass is an array- Returns:
- boolean whether this RLClass is an array
-
getName
Get fully qualified name of this RLClass- Returns:
- fully qualified name String
-
getRuleSession
Get the RuleSession that defines this RLClass- Returns:
- RuleSession
-
getDeclaredProperty
Get the RLProperty this RLClass declares by name- Parameters:
name
- property name String- Returns:
- RLProperty
-
getDeclaredProperties
Get all RLPropertys declared by this RLClass- Returns:
- RLProperty[]
-
getProperty
Get property implemented by this RLClass or a superclass by name- Parameters:
name
- property name String- Returns:
- RLProperty
-
getProperties
Get all RLPropertys implemented by this RLClass or a superclass- Returns:
- RLProperty[]
-
getSuperclass
Get superclass- Returns:
- RLClass
-
isAssignableFrom
Test whether given RLClass can be assigned to this RLClass- Parameters:
cls
- given RLClass- Returns:
- boolean
-
isInstance
Test whether given RLObject is an instance of this RLClass- Parameters:
obj
- given RLObject- Returns:
- boolean
-
newInstance
Deprecated.As of 11.1.1.0.0, replaced bynewInstance(RuleSession)
create and return a new instance (RLObject) of this RLClass, initialized per the RL class defintion.- Returns:
- RLObject new default-initialized instance of this RLClass
- Throws:
RLException
-
newInstance
create and return a new instance (RLObject) of this RLClass, initialized per the RL class defintion.- Returns:
- RLObject new default-initialized instance of this RLClass
- Throws:
RLException
-
newInstance(RuleSession)