|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<FennelSearchEndpoint> net.sf.farrago.fennel.rel.FennelSearchEndpoint
public enum FennelSearchEndpoint
FennelSearchEndpoint defines an enumeration corresponding to fennel/common/SearchEndpoint.h. Any changes there must be applied here as well.
Enum Constant Summary | |
---|---|
SEARCH_CLOSED_LOWER
Defines the beginning of an interval which has a closed bound below. |
|
SEARCH_CLOSED_UPPER
Defines the end of an interval which has a closed bound above. |
|
SEARCH_OPEN_LOWER
Defines the beginning of an interval which has an open bound below. |
|
SEARCH_OPEN_UPPER
Defines the end of an interval which has an open bound above. |
|
SEARCH_UNBOUNDED_LOWER
Defines the beginning of an interval which is unbounded below. |
|
SEARCH_UNBOUNDED_UPPER
Defines the end of an interval which is unbounded above. |
Field Summary | |
---|---|
private String |
symbol
|
Method Summary | |
---|---|
String |
getSymbol()
|
static FennelSearchEndpoint |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FennelSearchEndpoint[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FennelSearchEndpoint SEARCH_UNBOUNDED_LOWER
public static final FennelSearchEndpoint SEARCH_OPEN_LOWER
public static final FennelSearchEndpoint SEARCH_CLOSED_LOWER
public static final FennelSearchEndpoint SEARCH_OPEN_UPPER
public static final FennelSearchEndpoint SEARCH_CLOSED_UPPER
public static final FennelSearchEndpoint SEARCH_UNBOUNDED_UPPER
Field Detail |
---|
private final String symbol
Method Detail |
---|
public static final FennelSearchEndpoint[] values()
for(FennelSearchEndpoint c : FennelSearchEndpoint.values()) System.out.println(c);
public static FennelSearchEndpoint valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String getSymbol()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |