Enum SearchMatching
- java.lang.Object
-
- java.lang.Enum<SearchMatching>
-
- com.opentext.livelink.service.memberservice.SearchMatching
-
- All Implemented Interfaces:
IServiceDataObject
,java.io.Serializable
,java.lang.Comparable<SearchMatching>
public enum SearchMatching extends java.lang.Enum<SearchMatching> implements IServiceDataObject, java.io.Serializable
SearchMatching defines the matching method used in a search.- Version:
- 2013-08-26
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINS
Search term is contained within the result.ENDSWITH
Result ends with the search term.SOUNDSLIKE
Search term sounds like the result.STARTSWITH
Result starts with the search term.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SearchMatching
fromString(java.lang.String s)
Returns the enum constant with the specified name.void
load(com.opentext.api.LLValue value)
Deserialize an ServiceDataObject from an LLValue that is received from Livelink.com.opentext.api.LLValue
toLLValue()
Serialize an SDO object to an LLValue that can be sent to Livelink.static SearchMatching
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SearchMatching[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTAINS
public static final SearchMatching CONTAINS
Search term is contained within the result.
-
ENDSWITH
public static final SearchMatching ENDSWITH
Result ends with the search term.
-
SOUNDSLIKE
public static final SearchMatching SOUNDSLIKE
Search term sounds like the result.
-
STARTSWITH
public static final SearchMatching STARTSWITH
Result starts with the search term.
-
-
Method Detail
-
values
public static SearchMatching[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SearchMatching c : SearchMatching.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchMatching valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
load
public void load(com.opentext.api.LLValue value)
Description copied from interface:IServiceDataObject
Deserialize an ServiceDataObject from an LLValue that is received from Livelink. The LLValue is an Assoc that contains all of the features of this SDO. These features may refer to other SDOs and contain arrays of primitive values or SDOs. Each referenced SDO, will have its load() method called as well. Note: this is an internal method not meant to be called by clients.- Specified by:
load
in interfaceIServiceDataObject
- Parameters:
value
- the LLValue containing the data to be loaded
-
toLLValue
public com.opentext.api.LLValue toLLValue()
Description copied from interface:IServiceDataObject
Serialize an SDO object to an LLValue that can be sent to Livelink. Each feature of the SDO is stored in a key of the LLValue Assoc. Any references to other SDOs cause their toLLValue() method to be called. Note: this is an internal method not meant to be called by clients.- Specified by:
toLLValue
in interfaceIServiceDataObject
- Returns:
- Returns the LLValue object that represents this SDO
-
fromString
public static SearchMatching fromString(java.lang.String s)
Returns the enum constant with the specified name.
-
-