Package org.apache.commons.ognl
Class DynamicSubscript
- java.lang.Object
-
- org.apache.commons.ognl.DynamicSubscript
-
public class DynamicSubscript extends java.lang.ObjectThis class has predefined instances that stand for OGNL's special "dynamic subscripts" for getting at the first, middle, or last elements of a list. In OGNL expressions, these subscripts look like special kinds of array indexes: [^] means the first element, [$] means the last, [|] means the middle, and [*] means the whole list.
-
-
Field Summary
Fields Modifier and Type Field Description static DynamicSubscriptallstatic intALLstatic DynamicSubscriptfirststatic intFIRSTprivate intflagstatic DynamicSubscriptlaststatic intLASTstatic DynamicSubscriptmidstatic intMID
-
Constructor Summary
Constructors Modifier Constructor Description privateDynamicSubscript(int flag)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFlag()java.lang.StringtoString()
-
-
-
Field Detail
-
FIRST
public static final int FIRST
- See Also:
- Constant Field Values
-
MID
public static final int MID
- See Also:
- Constant Field Values
-
LAST
public static final int LAST
- See Also:
- Constant Field Values
-
ALL
public static final int ALL
- See Also:
- Constant Field Values
-
first
public static final DynamicSubscript first
-
mid
public static final DynamicSubscript mid
-
last
public static final DynamicSubscript last
-
all
public static final DynamicSubscript all
-
flag
private int flag
-
-