public class term_t extends LongHolder
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Modifier and Type | Field and Description |
---|---|
static long |
UNASSIGNED |
value
Constructor and Description |
---|
term_t() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj)
Instances of term_ts are stored in Term objects (see jpl.Term), and these
term_ts are in some cases stored in Hashtables.
|
static java.lang.String |
toString(int n,
term_t term0)
This static method converts a term_t, which is assumed to contain a
reference to a *consecutive* list of term_t references to a String
representation of a list of terms, in this case, a comma separated list.
|
hashCode
public static final long UNASSIGNED
public static java.lang.String toString(int n, term_t term0)
n
- the number of consecutive term_tsterm0
- a term_t whose value is the 0th term_t.public boolean equals(java.lang.Object obj)
Note. Two term_ts are *not* equal if their values have not been assigned. (Since Prolog FLI term_ts are unsigned values and the UNASSIGNED value is -1, this should work).
equals
in class LongHolder
obj
- the Object to comapre.