|
CubeTwister 2.0alpha142 2012-02-11 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectch.randelshofer.rubik.parser.Syntax
public class Syntax
Typesafe Enumeration of Syntaxes for the Parser.
| Field Summary | |
|---|---|
static Syntax |
CIRCUMFIX
Circumfix syntax: The root is placed between begin and end. |
static Syntax |
POSTCIRCUMFIX
Post-Circumfix syntax: The affix is placed after the root. |
static Syntax |
POSTINFIX
Binary Post-Infix syntax: The affix is placed between post-root and pre-root. |
static Syntax |
PRECIRCUMFIX
Pre-Circumfix syntax: The affix is placed before the root. |
static Syntax |
PREFIX
Binary prefix syntax: The affix is placed between begin and end before the root. |
static Syntax |
PREINFIX
Binary Pre-Infix syntax: The affix is placed between pre-root and post-root. |
static Syntax |
SUFFIX
Binary suffix syntax: The affix is placed between begin and end after the root. |
| Method Summary | |
|---|---|
int |
compareTo(java.lang.Object that)
|
static java.util.Vector |
getAllSyntaxes()
|
static java.util.Hashtable |
getSyntaxValueSet()
|
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final Syntax PREFIX
Binary Prefix ::= Begin , Affix , End , Root ;Unary prefix syntax: The affix is placed before the root.
Unary Prefix ::= Affix , Root ;
public static final Syntax SUFFIX
Binary Suffix ::= Root , Begin , Affix , End ;Unary suffix syntax: The affix is placed after the root.
Suffix ::= Root, Affix ;
public static final Syntax CIRCUMFIX
Circumfix ::= Begin , Root , End ;
public static final Syntax PRECIRCUMFIX
Precircumfix ::= Begin , Affix , Delimiter , Root , End ;
public static final Syntax POSTCIRCUMFIX
Postcircumfix ::= Begin , Root , Delimiter , Affix , End ;
public static final Syntax PREINFIX
Infix ::= Pre-Root , Affix, Post-Root;
public static final Syntax POSTINFIX
Infix ::= Post-Root , Affix , Pre-Root;
| Method Detail |
|---|
public int compareTo(java.lang.Object that)
public java.lang.String toString()
toString in class java.lang.Objectpublic static java.util.Vector getAllSyntaxes()
public static java.util.Hashtable getSyntaxValueSet()
|
(c) Werner Randelshofer. All rights reserved. |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||