|
JML | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StringOfObject | |
org.jmlspecs.models.resolve | This package is a collection of types with immutable objects based on the RESOLVE specification language's mathematical models. |
Uses of StringOfObject in org.jmlspecs.models.resolve |
Fields in org.jmlspecs.models.resolve declared as StringOfObject | |
static StringOfObject |
StringOfObject.EMPTY
The empty string of objects. |
Methods in org.jmlspecs.models.resolve that return StringOfObject | |
static StringOfObject |
StringOfObject.singleton(Object elem)
Make a singleton string of objects containing just the given object. |
static StringOfObject |
StringOfObject.ext(StringOfObject s,
Object elem)
Extend the given string by placing the given element at the end. |
static StringOfObject |
StringOfObject.from(Object[] a)
Make an array of objects into a string. |
static StringOfObject |
StringOfObject.from(Collection c)
Make a collection into a string. |
static StringOfObject |
StringOfObject.product(StringOfObject[] a)
Compose all the elements of a in order. |
static StringOfObject |
StringOfObject.productFrom(StringOfObject[] a,
int fromIndex)
Compose all the elements of a in order, starting at the given index. |
static StringOfObject |
StringOfObject.productFromTo(StringOfObject[] a,
int fromIndex,
int toIndex)
Compose all the elements of a in order, starting with fromIndex, and including elements up to but not including toIndex. |
StringOfObject |
StringOfObject.ext(Object elem)
Extend a string with a new element at the end. |
StringOfObject |
StringOfObject.add(Object elem)
Add an element to a string at the end. |
StringOfObject |
StringOfObject.addFront(Object elem)
Add an element to a string at the front. |
StringOfObject |
StringOfObject.addAfterIndex(int afterThisOne,
Object elem)
Add an element to a string after the given index. |
StringOfObject |
StringOfObject.addBeforeIndex(int beforeThisOne,
Object elem)
Add an element to a string before the given index. |
StringOfObject |
StringOfObject.concat(StringOfObject s)
Concatenate this with s. |
StringOfObject |
StringOfObject.composedWith(StringOfObject s)
Compose this with s. |
StringOfObject |
StringOfObject.addAll(Collection c)
Add all the elements of c, at the end of this string, in the order determined by c's iterator. |
StringOfObject |
StringOfObject.addAll(Object[] c)
Add all the elements of c at the end of this string, in order from the smallest to the largest index. |
StringOfObject |
StringOfObject.rev()
Return the reverse of the string. |
StringOfObject |
StringOfObject.reverse()
Return the reverse of the string. |
StringOfObject |
StringOfObject.pow(int n)
Compose this string with itself the given number of times. |
Methods in org.jmlspecs.models.resolve with parameters of type StringOfObject | |
static StringOfObject |
StringOfObject.ext(StringOfObject s,
Object elem)
Extend the given string by placing the given element at the end. |
static StringOfObject |
StringOfObject.product(StringOfObject[] a)
Compose all the elements of a in order. |
static StringOfObject |
StringOfObject.productFrom(StringOfObject[] a,
int fromIndex)
Compose all the elements of a in order, starting at the given index. |
static StringOfObject |
StringOfObject.productFromTo(StringOfObject[] a,
int fromIndex,
int toIndex)
Compose all the elements of a in order, starting with fromIndex, and including elements up to but not including toIndex. |
StringOfObject |
StringOfObject.concat(StringOfObject s)
Concatenate this with s. |
StringOfObject |
StringOfObject.composedWith(StringOfObject s)
Compose this with s. |
boolean |
StringOfObject.isPrefix(StringOfObject s2)
Tell whether this string occurs as a prefix of the given argument string. |
boolean |
StringOfObject.isProperPrefix(StringOfObject s2)
Tell whether this string occurs as a proper prefix of the given argument string. |
boolean |
StringOfObject.isProperSuffix(StringOfObject s2)
Tell whether this string occurs as a proper suffix of the given argument string. |
boolean |
StringOfObject.isSuffix(StringOfObject s2)
Tell whether this string occurs as a suffix of the given argument string. |
|
JML | ||||||||||
PREV NEXT | FRAMES NO FRAMES |