public abstract class El extends Object implements Binding, Retrieval
| Modifier and Type | Class and Description |
|---|---|
static class |
El.ElMethod
Handle EL Method Invocation and Value Extraction
|
static class |
El.ElProperties |
static class |
El.ElProperty
Handle EL Property Injection and Extraction
|
| Constructor and Description |
|---|
El() |
| Modifier and Type | Method and Description |
|---|---|
static El |
method(String retrieve,
String submit)
Create a new EL Method binding using distinct expressions to submit and retrieve values.
|
static El |
properties(Field submit,
Field retrieve)
Create a new EL Value binding using a single expression to submit and retrieve values.
|
static El |
properties(String submit,
String retrieve)
Create a new EL Value binding using a single expression to submit and retrieve values.
|
static El |
property(Class<?> clazz,
String fieldName)
Create a new EL Value binding using a single expression to submit and retrieve values.
|
static El |
property(Field field)
Create a new EL Value binding using a single expression to submit and retrieve values.
|
static El |
property(String expression)
Create a new EL Value binding using a single expression to submit and retrieve values.
|
static El |
retrievalMethod(Class<?> clazz,
String methodName)
Create a new EL Method binding to retrieve values.
|
static El |
retrievalMethod(Method method)
Create a new EL Method binding to retrieve values.
|
static El |
retrievalMethod(String expression)
Create a new EL Method binding to retrieve values.
|
static El |
submissionMethod(String expression)
Create a new EL Method binding to submit values.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitsupportsRetrieval, supportsSubmissionsubmitpublic static El method(String retrieve, String submit)
public static El retrievalMethod(String expression)
public static El retrievalMethod(Method method)
Method instance
to refer to the method that should be invoked.public static El retrievalMethod(Class<?> clazz, String methodName)
Class
representing the type of the target object and the method name to refer to the method that should be invoked.public static El submissionMethod(String expression)
public static El property(String expression)
public static El property(Field field)
Field argument. The EL expression will be automatically created at runtime.public static El property(Class<?> clazz, String fieldName)
Class representing the type of the target object and the field name. The EL expression will be
automatically created at runtime.public static El properties(String submit, String retrieve)
public static El properties(Field submit, Field retrieve)
Field argument. The EL expression will be automatically created at runtime.Copyright © 2014 OCPsoft. All Rights Reserved.