| java.lang.Object com.sun.portal.search.rdm.RDMViewHits
RDMViewHits | public class RDMViewHits (Code) | | RDM View Hits
The View Hits object specifies a range for result sets.
Use _Parse() to load a new object from an RDM string.
Example:
RDMViewHits *vhp1 = RDMViewHits_Parse("100") for 1..100
RDMViewHits *vhp2 = RDMViewHits_Parse("1..100") for 1..100
|
Method Summary | |
protected String | tostring() To generate a string representation of the View-Hits,
use toString(). |
RDMVIEWHITS_DEFAULT | final public static int RDMVIEWHITS_DEFAULT(Code) | | |
RDMVIEWHITS_MAX | final public static int RDMVIEWHITS_MAX(Code) | | |
RDMVIEWHITS_UNBOUNDED | final public static int RDMVIEWHITS_UNBOUNDED(Code) | | |
RDMViewHits | public RDMViewHits(String str)(Code) | | create a view hits object - if the input is bad, you will get the default
|
RDMViewHits | public RDMViewHits(int min, int max)(Code) | | |
tostring | protected String tostring()(Code) | | To generate a string representation of the View-Hits,
use toString(). It'll generate the following strings:
min max string
1 10 "1..10"
UNBOUND 100 "1..100"
UNBOUND UNBOUND "1..1000000"
10 UNBOUND "10..1000000"
100 UNBOUND "100..1000000"
|
|
|