public interface IloSymbolSet
extends ilog.concert.IloAnyCollection
IloSymbolSet is used to represent a collection of string values with
no duplicate.| Modifier and Type | Method and Description |
|---|---|
void |
add(java.lang.String elt)
This method adds
elt to the invoking set. |
boolean |
contains(java.lang.String elt)
This method returns a Boolean value (zero or one) that specifies whether
elt
is an element of the invoking set. |
void |
remove(java.lang.String elt)
This method removes
elt from the invoking set. |
void add(java.lang.String elt)
elt to the invoking set. The invoking set becomes
the union of its former elements and the new elt.void remove(java.lang.String elt)
elt from the invoking set. If the set does not
contain this element, no error is raised.boolean contains(java.lang.String elt)
elt
is an element of the invoking set. The value one specifies that the invoking set contains
elt; the value zero specifies that the invoking set does not contain elt.