|
abc4j API Specification | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Set | |
|---|---|
| scanner | This package contains classes for scanners needed for syntax analysis : a scanner is in charge of retrieving tokens from an input stream. |
| Uses of Set in scanner |
|---|
| Methods in scanner that return Set | |
|---|---|
Set |
Set.createUnion(Set aSet)
Creates a new set containing tokens types from this set AND tokens types from the given set. |
Set |
Set.createUnion(TokenType tokenType)
Creates a new set containing tokens types from this set AND the specified token type. |
Set |
Set.intersect(Set aSet)
Returns a new set containing elements contained in this set AND in the given one. |
Set |
Set.union(Set aSet)
Adds the tokens types from the specified set to this set (without creating any new set). |
Set |
Set.union(TokenType tokenType)
Performs an union with the specified token type without creating any new set. |
| Methods in scanner with parameters of type Set | |
|---|---|
boolean |
Set.contains(Set aSet)
|
Set |
Set.createUnion(Set aSet)
Creates a new set containing tokens types from this set AND tokens types from the given set. |
Set |
Set.intersect(Set aSet)
Returns a new set containing elements contained in this set AND in the given one. |
void |
Set.remove(Set aSet)
Removes all elements of the given set from this set. |
Set |
Set.union(Set aSet)
Adds the tokens types from the specified set to this set (without creating any new set). |
| Constructors in scanner with parameters of type Set | |
|---|---|
Set(Set set)
Creates a new set from the specified one. |
|
|
abc4j API Specification | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||