Package net.sf.jsqlparser.statement
Class ReferentialAction
- java.lang.Object
-
- net.sf.jsqlparser.statement.ReferentialAction
-
- All Implemented Interfaces:
java.io.Serializable
public class ReferentialAction extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ReferentialAction.Action
static class
ReferentialAction.Type
-
Field Summary
Fields Modifier and Type Field Description private ReferentialAction.Action
action
private ReferentialAction.Type
type
-
Constructor Summary
Constructors Constructor Description ReferentialAction()
ReferentialAction(ReferentialAction.Type type, ReferentialAction.Action action)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
ReferentialAction.Action
getAction()
ReferentialAction.Type
getType()
int
hashCode()
void
setAction(ReferentialAction.Action action)
void
setType(ReferentialAction.Type type)
java.lang.String
toString()
ReferentialAction
withAction(ReferentialAction.Action action)
ReferentialAction
withType(ReferentialAction.Type type)
-
-
-
Field Detail
-
type
private ReferentialAction.Type type
-
action
private ReferentialAction.Action action
-
-
Constructor Detail
-
ReferentialAction
public ReferentialAction()
-
ReferentialAction
public ReferentialAction(ReferentialAction.Type type, ReferentialAction.Action action)
-
-
Method Detail
-
getType
public ReferentialAction.Type getType()
-
setType
public void setType(ReferentialAction.Type type)
-
withType
public ReferentialAction withType(ReferentialAction.Type type)
-
getAction
public ReferentialAction.Action getAction()
-
setAction
public void setAction(ReferentialAction.Action action)
-
withAction
public ReferentialAction withAction(ReferentialAction.Action action)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-