|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.bigdata.bop.controller.NamedSolutionSetRef
public class NamedSolutionSetRef
Class models the information which uniquely describes a named solution set. The "name" is comprised of the following components:
UUID of the query which generated the named solution set.
This provides the scope for the named solution set. It is used to (a) locate
the data; and (b) release the data when the query goes out of scope.
| Field Summary | |
|---|---|
IVariable[] |
joinVars
The join variables (required, but may be an empty array). |
String |
namedSet
The application level name for the named solution set. |
UUID |
queryId
The UUID of the IRunningQuery which generated the named
solution set. |
| Constructor Summary | |
|---|---|
NamedSolutionSetRef(UUID queryId,
String namedSet,
IVariable[] joinVars)
|
|
| Method Summary | |
|---|---|
boolean |
equals(Object o)
|
int |
hashCode()
|
String |
toString()
Return a human readable representation which can be decoded by valueOf(String). |
static NamedSolutionSetRef |
valueOf(String s)
Parses the toString() representation, returning an instance of
this class. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public final UUID queryId
UUID of the IRunningQuery which generated the named
solution set. This is where you need to look to find the data.
public final String namedSet
public final IVariable[] joinVars
| Constructor Detail |
|---|
public NamedSolutionSetRef(UUID queryId,
String namedSet,
IVariable[] joinVars)
queryId - The UUID of the IRunningQuery where you need
to look to find the data (required).namedSet - The application level name for the named solution set
(required).joinVars - The join variables (required, but may be an empty array).| Method Detail |
|---|
public int hashCode()
hashCode in class Objectpublic boolean equals(Object o)
equals in class Objectpublic String toString()
valueOf(String).
toString in class Objectpublic static NamedSolutionSetRef valueOf(String s)
toString() representation, returning an instance of
this class.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||