Package hydra.java.syntax
Class StatementWithoutTrailingSubstatement
- java.lang.Object
-
- hydra.java.syntax.StatementWithoutTrailingSubstatement
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StatementWithoutTrailingSubstatement>
- Direct Known Subclasses:
StatementWithoutTrailingSubstatement.Assert,StatementWithoutTrailingSubstatement.Block,StatementWithoutTrailingSubstatement.Break,StatementWithoutTrailingSubstatement.Continue,StatementWithoutTrailingSubstatement.Do,StatementWithoutTrailingSubstatement.Empty,StatementWithoutTrailingSubstatement.Expression,StatementWithoutTrailingSubstatement.Return,StatementWithoutTrailingSubstatement.Switch,StatementWithoutTrailingSubstatement.Synchronized,StatementWithoutTrailingSubstatement.Throw,StatementWithoutTrailingSubstatement.Try,StatementWithoutTrailingSubstatement.Yield
public abstract class StatementWithoutTrailingSubstatement extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<StatementWithoutTrailingSubstatement>
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Field Summary
Fields Modifier and Type Field Description static NameASSERTName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.assertfield.static NameBLOCKName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.blockfield.static NameBREAKName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.breakfield.static NameCONTINUEName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.continuefield.static NameDOName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.dofield.static NameEMPTYName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.emptyfield.static NameEXPRESSIONName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.expressionfield.static NameRETURNName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.returnfield.static NameSWITCHName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.switchfield.static NameSYNCHRONIZEDName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.synchronizedfield.static NameTHROWName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.throwfield.static NameTRYName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.tryfield.static NameTYPE_Name of thehydra.java.syntax.StatementWithoutTrailingSubstatementtype.static NameYIELDName of thehydra.java.syntax.StatementWithoutTrailingSubstatement.yieldfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(StatementWithoutTrailingSubstatement.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatementtype.
-
BLOCK
public static final Name BLOCK
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.blockfield.
-
EMPTY
public static final Name EMPTY
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.emptyfield.
-
EXPRESSION
public static final Name EXPRESSION
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.expressionfield.
-
ASSERT
public static final Name ASSERT
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.assertfield.
-
SWITCH
public static final Name SWITCH
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.switchfield.
-
DO
public static final Name DO
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.dofield.
-
BREAK
public static final Name BREAK
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.breakfield.
-
CONTINUE
public static final Name CONTINUE
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.continuefield.
-
RETURN
public static final Name RETURN
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.returnfield.
-
SYNCHRONIZED
public static final Name SYNCHRONIZED
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.synchronizedfield.
-
THROW
public static final Name THROW
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.throwfield.
-
TRY
public static final Name TRY
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.tryfield.
-
YIELD
public static final Name YIELD
Name of thehydra.java.syntax.StatementWithoutTrailingSubstatement.yieldfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(StatementWithoutTrailingSubstatement.Visitor<R> visitor)
Dispatch tovisitor.
-
-