kiwi-postgis  Version 0.1.0.0
MaxX Class Reference
Inheritance diagram for MaxX:
Collaboration diagram for MaxX:

Public Member Functions

 MaxX (ValueExpr arg)
 
 MaxX (ValueExpr arg, boolean distinct)
 
boolean equals (Object other)
 
int hashCode ()
 
MaxX clone ()
 

Package Functions

public< X extends Exception > void visit (QueryModelVisitor< X > visitor) throws X
 

Detailed Description

Author
David Huynh

Constructor & Destructor Documentation

◆ MaxX() [1/2]

MaxX ( ValueExpr  arg)
11  {
12  super(arg);
13  }

◆ MaxX() [2/2]

MaxX ( ValueExpr  arg,
boolean  distinct 
)
15  {
16  super(arg, distinct);
17  }

Member Function Documentation

◆ clone()

MaxX clone ( )

References MaxX.clone().

Referenced by MaxX.clone().

35  {
36  return (MaxX) super.clone();
37  }

◆ equals()

boolean equals ( Object  other)

References MaxX.equals().

Referenced by MaxX.equals().

25  {
26  return other instanceof MaxX && super.equals(other);
27  }

◆ hashCode()

int hashCode ( )
30  {
31  return super.hashCode() ^ "MaxX".hashCode();
32  }

◆ visit()

public<X extends Exception> void visit ( QueryModelVisitor< X >  visitor) throws X
package
20  {
21  visitor.meet(this);
22  }