[jOOQ/jOOQ#12425] Generate equals based on QOM API type, not impl type

This commit is contained in:
Lukas Eder 2021-10-27 14:36:52 +02:00
parent 57f874309b
commit 2fba034f2b
164 changed files with 164 additions and 164 deletions

View File

@ -160,7 +160,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Abs) { Abs o = (Abs) that;
if (that instanceof QOM.Abs) { QOM.Abs<?> o = (QOM.Abs<?>) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -176,7 +176,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Acos) { Acos o = (Acos) that;
if (that instanceof QOM.Acos) { QOM.Acos o = (QOM.Acos) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -164,7 +164,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Add) { Add o = (Add) that;
if (that instanceof QOM.Add) { QOM.Add<?> o = (QOM.Add<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -176,7 +176,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof And) { And o = (And) that;
if (that instanceof QOM.And) { QOM.And o = (QOM.And) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -184,7 +184,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof AnyValue) { AnyValue o = (AnyValue) that;
if (that instanceof QOM.AnyValue) { QOM.AnyValue<?> o = (QOM.AnyValue<?>) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -201,7 +201,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof ArrayGet) { ArrayGet o = (ArrayGet) that;
if (that instanceof QOM.ArrayGet) { QOM.ArrayGet<?> o = (QOM.ArrayGet<?>) that;
return
StringUtils.equals($array(), o.$array()) &&
StringUtils.equals($index(), o.$index())

View File

@ -170,7 +170,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Ascii) { Ascii o = (Ascii) that;
if (that instanceof QOM.Ascii) { QOM.Ascii o = (QOM.Ascii) that;
return
StringUtils.equals($string(), o.$string())
;

View File

@ -172,7 +172,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Asin) { Asin o = (Asin) that;
if (that instanceof QOM.Asin) { QOM.Asin o = (QOM.Asin) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -167,7 +167,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Atan) { Atan o = (Atan) that;
if (that instanceof QOM.Atan) { QOM.Atan o = (QOM.Atan) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -186,7 +186,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Atan2) { Atan2 o = (Atan2) that;
if (that instanceof QOM.Atan2) { QOM.Atan2 o = (QOM.Atan2) that;
return
StringUtils.equals($x(), o.$x()) &&
StringUtils.equals($y(), o.$y())

View File

@ -147,7 +147,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Avg) { Avg o = (Avg) that;
if (that instanceof QOM.Avg) { QOM.Avg o = (QOM.Avg) that;
return
StringUtils.equals($field(), o.$field()) &&
$distinct() == o.$distinct()

View File

@ -173,7 +173,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitAnd) { BitAnd o = (BitAnd) that;
if (that instanceof QOM.BitAnd) { QOM.BitAnd<?> o = (QOM.BitAnd<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -329,7 +329,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitAndAgg) { BitAndAgg o = (BitAndAgg) that;
if (that instanceof QOM.BitAndAgg) { QOM.BitAndAgg<?> o = (QOM.BitAndAgg<?>) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -507,7 +507,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitCount) { BitCount o = (BitCount) that;
if (that instanceof QOM.BitCount) { QOM.BitCount o = (QOM.BitCount) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -191,7 +191,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitLength) { BitLength o = (BitLength) that;
if (that instanceof QOM.BitLength) { QOM.BitLength o = (QOM.BitLength) that;
return
StringUtils.equals($string(), o.$string())
;

View File

@ -151,7 +151,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitNand) { BitNand o = (BitNand) that;
if (that instanceof QOM.BitNand) { QOM.BitNand<?> o = (QOM.BitNand<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -151,7 +151,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitNor) { BitNor o = (BitNor) that;
if (that instanceof QOM.BitNor) { QOM.BitNor<?> o = (QOM.BitNor<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -156,7 +156,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitNot) { BitNot o = (BitNot) that;
if (that instanceof QOM.BitNot) { QOM.BitNot<?> o = (QOM.BitNot<?>) that;
return
StringUtils.equals($arg1(), o.$arg1())
;

View File

@ -178,7 +178,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitOr) { BitOr o = (BitOr) that;
if (that instanceof QOM.BitOr) { QOM.BitOr<?> o = (QOM.BitOr<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -329,7 +329,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitOrAgg) { BitOrAgg o = (BitOrAgg) that;
if (that instanceof QOM.BitOrAgg) { QOM.BitOrAgg<?> o = (QOM.BitOrAgg<?>) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -151,7 +151,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitXNor) { BitXNor o = (BitXNor) that;
if (that instanceof QOM.BitXNor) { QOM.BitXNor<?> o = (QOM.BitXNor<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -182,7 +182,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitXor) { BitXor o = (BitXor) that;
if (that instanceof QOM.BitXor) { QOM.BitXor<?> o = (QOM.BitXor<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -334,7 +334,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BitXorAgg) { BitXorAgg o = (BitXorAgg) that;
if (that instanceof QOM.BitXorAgg) { QOM.BitXorAgg<?> o = (QOM.BitXorAgg<?>) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -175,7 +175,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BoolAnd) { BoolAnd o = (BoolAnd) that;
if (that instanceof QOM.BoolAnd) { QOM.BoolAnd o = (QOM.BoolAnd) that;
return
StringUtils.equals($condition(), o.$condition())
;

View File

@ -176,7 +176,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof BoolOr) { BoolOr o = (BoolOr) that;
if (that instanceof QOM.BoolOr) { QOM.BoolOr o = (QOM.BoolOr) that;
return
StringUtils.equals($condition(), o.$condition())
;

View File

@ -160,7 +160,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Cardinality) { Cardinality o = (Cardinality) that;
if (that instanceof QOM.Cardinality) { QOM.Cardinality o = (QOM.Cardinality) that;
return
StringUtils.equals($array(), o.$array())
;

View File

@ -179,7 +179,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Ceil) { Ceil o = (Ceil) that;
if (that instanceof QOM.Ceil) { QOM.Ceil<?> o = (QOM.Ceil<?>) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -180,7 +180,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof CharLength) { CharLength o = (CharLength) that;
if (that instanceof QOM.CharLength) { QOM.CharLength o = (QOM.CharLength) that;
return
StringUtils.equals($string(), o.$string())
;

View File

@ -180,7 +180,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Chr) { Chr o = (Chr) that;
if (that instanceof QOM.Chr) { QOM.Chr o = (QOM.Chr) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -183,7 +183,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof ConditionAsField) { ConditionAsField o = (ConditionAsField) that;
if (that instanceof QOM.ConditionAsField) { QOM.ConditionAsField o = (QOM.ConditionAsField) that;
return
StringUtils.equals($condition(), o.$condition())
;

View File

@ -164,7 +164,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Contains) { Contains o = (Contains) that;
if (that instanceof QOM.Contains) { QOM.Contains<?> o = (QOM.Contains<?>) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($content(), o.$content())

View File

@ -147,7 +147,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof ContainsIgnoreCase) { ContainsIgnoreCase o = (ContainsIgnoreCase) that;
if (that instanceof QOM.ContainsIgnoreCase) { QOM.ContainsIgnoreCase<?> o = (QOM.ContainsIgnoreCase<?>) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($content(), o.$content())

View File

@ -180,7 +180,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Corr) { Corr o = (Corr) that;
if (that instanceof QOM.Corr) { QOM.Corr o = (QOM.Corr) that;
return
StringUtils.equals($y(), o.$y()) &&
StringUtils.equals($x(), o.$x())

View File

@ -161,7 +161,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Cos) { Cos o = (Cos) that;
if (that instanceof QOM.Cos) { QOM.Cos o = (QOM.Cos) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -188,7 +188,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Cosh) { Cosh o = (Cosh) that;
if (that instanceof QOM.Cosh) { QOM.Cosh o = (QOM.Cosh) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -172,7 +172,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Cot) { Cot o = (Cot) that;
if (that instanceof QOM.Cot) { QOM.Cot o = (QOM.Cot) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -164,7 +164,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Coth) { Coth o = (Coth) that;
if (that instanceof QOM.Coth) { QOM.Coth o = (QOM.Coth) that;
return
StringUtils.equals($number(), o.$number())
;

View File

@ -145,7 +145,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Count) { Count o = (Count) that;
if (that instanceof QOM.Count) { QOM.Count o = (QOM.Count) that;
return
StringUtils.equals($field(), o.$field()) &&
$distinct() == o.$distinct()

View File

@ -180,7 +180,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof CovarPop) { CovarPop o = (CovarPop) that;
if (that instanceof QOM.CovarPop) { QOM.CovarPop o = (QOM.CovarPop) that;
return
StringUtils.equals($y(), o.$y()) &&
StringUtils.equals($x(), o.$x())

View File

@ -180,7 +180,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof CovarSamp) { CovarSamp o = (CovarSamp) that;
if (that instanceof QOM.CovarSamp) { QOM.CovarSamp o = (QOM.CovarSamp) that;
return
StringUtils.equals($y(), o.$y()) &&
StringUtils.equals($x(), o.$x())

View File

@ -131,7 +131,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof CurrentCatalog) { CurrentCatalog o = (CurrentCatalog) that;
if (that instanceof QOM.CurrentCatalog) { QOM.CurrentCatalog o = (QOM.CurrentCatalog) that;
return true;
}
else

View File

@ -160,7 +160,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof CurrentSchema) { CurrentSchema o = (CurrentSchema) that;
if (that instanceof QOM.CurrentSchema) { QOM.CurrentSchema o = (QOM.CurrentSchema) that;
return true;
}
else

View File

@ -149,7 +149,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof CurrentUser) { CurrentUser o = (CurrentUser) that;
if (that instanceof QOM.CurrentUser) { QOM.CurrentUser o = (QOM.CurrentUser) that;
return true;
}
else

View File

@ -485,7 +485,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof DateAdd) { DateAdd o = (DateAdd) that;
if (that instanceof QOM.DateAdd) { QOM.DateAdd<?> o = (QOM.DateAdd<?>) that;
return
StringUtils.equals($date(), o.$date()) &&
StringUtils.equals($interval(), o.$interval()) &&

View File

@ -188,7 +188,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Degrees) { Degrees o = (Degrees) that;
if (that instanceof QOM.Degrees) { QOM.Degrees o = (QOM.Degrees) that;
return
StringUtils.equals($radians(), o.$radians())
;

View File

@ -177,7 +177,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Digits) { Digits o = (Digits) that;
if (that instanceof QOM.Digits) { QOM.Digits o = (QOM.Digits) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -157,7 +157,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Div) { Div o = (Div) that;
if (that instanceof QOM.Div) { QOM.Div<?> o = (QOM.Div<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -147,7 +147,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof EndsWith) { EndsWith o = (EndsWith) that;
if (that instanceof QOM.EndsWith) { QOM.EndsWith<?> o = (QOM.EndsWith<?>) that;
return
StringUtils.equals($string(), o.$string()) &&
StringUtils.equals($suffix(), o.$suffix())

View File

@ -147,7 +147,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof EndsWithIgnoreCase) { EndsWithIgnoreCase o = (EndsWithIgnoreCase) that;
if (that instanceof QOM.EndsWithIgnoreCase) { QOM.EndsWithIgnoreCase<?> o = (QOM.EndsWithIgnoreCase<?>) that;
return
StringUtils.equals($string(), o.$string()) &&
StringUtils.equals($suffix(), o.$suffix())

View File

@ -212,7 +212,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Eq) { Eq o = (Eq) that;
if (that instanceof QOM.Eq) { QOM.Eq<?> o = (QOM.Eq<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -151,7 +151,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Euler) { Euler o = (Euler) that;
if (that instanceof QOM.Euler) { QOM.Euler o = (QOM.Euler) that;
return true;
}
else

View File

@ -173,7 +173,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Exists) { Exists o = (Exists) that;
if (that instanceof QOM.Exists) { QOM.Exists o = (QOM.Exists) that;
return
StringUtils.equals($query(), o.$query())
;

View File

@ -172,7 +172,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Exp) { Exp o = (Exp) that;
if (that instanceof QOM.Exp) { QOM.Exp o = (QOM.Exp) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -170,7 +170,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof FieldCondition) { FieldCondition o = (FieldCondition) that;
if (that instanceof QOM.FieldCondition) { QOM.FieldCondition o = (QOM.FieldCondition) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -167,7 +167,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Floor) { Floor o = (Floor) that;
if (that instanceof QOM.Floor) { QOM.Floor<?> o = (QOM.Floor<?>) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -153,7 +153,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Ge) { Ge o = (Ge) that;
if (that instanceof QOM.Ge) { QOM.Ge<?> o = (QOM.Ge<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -153,7 +153,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Gt) { Gt o = (Gt) that;
if (that instanceof QOM.Gt) { QOM.Gt<?> o = (QOM.Gt<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -141,7 +141,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IAdd) { IAdd o = (IAdd) that;
if (that instanceof QOM.Add) { QOM.Add<?> o = (QOM.Add<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -141,7 +141,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IDiv) { IDiv o = (IDiv) that;
if (that instanceof QOM.Div) { QOM.Div<?> o = (QOM.Div<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -141,7 +141,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IMul) { IMul o = (IMul) that;
if (that instanceof QOM.Mul) { QOM.Mul<?> o = (QOM.Mul<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -141,7 +141,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof ISub) { ISub o = (ISub) that;
if (that instanceof QOM.Sub) { QOM.Sub<?> o = (QOM.Sub<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -149,7 +149,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof In) { In o = (In) that;
if (that instanceof QOM.In) { QOM.In<?> o = (QOM.In<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -181,7 +181,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsDistinctFrom) { IsDistinctFrom o = (IsDistinctFrom) that;
if (that instanceof QOM.IsDistinctFrom) { QOM.IsDistinctFrom<?> o = (QOM.IsDistinctFrom<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -134,7 +134,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsDocument) { IsDocument o = (IsDocument) that;
if (that instanceof QOM.IsDocument) { QOM.IsDocument o = (QOM.IsDocument) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -146,7 +146,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsJson) { IsJson o = (IsJson) that;
if (that instanceof QOM.IsJson) { QOM.IsJson o = (QOM.IsJson) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -175,7 +175,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsNotDistinctFrom) { IsNotDistinctFrom o = (IsNotDistinctFrom) that;
if (that instanceof QOM.IsNotDistinctFrom) { QOM.IsNotDistinctFrom<?> o = (QOM.IsNotDistinctFrom<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -134,7 +134,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsNotDocument) { IsNotDocument o = (IsNotDocument) that;
if (that instanceof QOM.IsNotDocument) { QOM.IsNotDocument o = (QOM.IsNotDocument) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -146,7 +146,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsNotJson) { IsNotJson o = (IsNotJson) that;
if (that instanceof QOM.IsNotJson) { QOM.IsNotJson o = (QOM.IsNotJson) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -148,7 +148,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsNotNull) { IsNotNull o = (IsNotNull) that;
if (that instanceof QOM.IsNotNull) { QOM.IsNotNull o = (QOM.IsNotNull) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -148,7 +148,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof IsNull) { IsNull o = (IsNull) that;
if (that instanceof QOM.IsNull) { QOM.IsNull o = (QOM.IsNull) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -302,7 +302,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof JSONArray) { JSONArray o = (JSONArray) that;
if (that instanceof QOM.JSONArray) { QOM.JSONArray<?> o = (QOM.JSONArray<?>) that;
return
StringUtils.equals($type(), o.$type()) &&
StringUtils.equals($fields(), o.$fields()) &&

View File

@ -334,7 +334,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof JSONObject) { JSONObject o = (JSONObject) that;
if (that instanceof QOM.JSONObject) { QOM.JSONObject<?> o = (QOM.JSONObject<?>) that;
return
StringUtils.equals($type(), o.$type()) &&
StringUtils.equals($entries(), o.$entries()) &&

View File

@ -214,7 +214,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Ltrim) { Ltrim o = (Ltrim) that;
if (that instanceof QOM.Ltrim) { QOM.Ltrim o = (QOM.Ltrim) that;
return
StringUtils.equals($string(), o.$string()) &&
StringUtils.equals($characters(), o.$characters())

View File

@ -153,7 +153,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Le) { Le o = (Le) that;
if (that instanceof QOM.Le) { QOM.Le<?> o = (QOM.Le<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -183,7 +183,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Left) { Left o = (Left) that;
if (that instanceof QOM.Left) { QOM.Left o = (QOM.Left) that;
return
StringUtils.equals($string(), o.$string()) &&
StringUtils.equals($length(), o.$length())

View File

@ -249,7 +249,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Like) { Like o = (Like) that;
if (that instanceof QOM.Like) { QOM.Like o = (QOM.Like) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($pattern(), o.$pattern()) &&

View File

@ -182,7 +182,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof LikeIgnoreCase) { LikeIgnoreCase o = (LikeIgnoreCase) that;
if (that instanceof QOM.LikeIgnoreCase) { QOM.LikeIgnoreCase o = (QOM.LikeIgnoreCase) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($pattern(), o.$pattern()) &&

View File

@ -251,7 +251,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Log) { Log o = (Log) that;
if (that instanceof QOM.Log) { QOM.Log o = (QOM.Log) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($base(), o.$base())

View File

@ -188,7 +188,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Log10) { Log10 o = (Log10) that;
if (that instanceof QOM.Log10) { QOM.Log10 o = (QOM.Log10) that;
return
StringUtils.equals($value(), o.$value())
;

View File

@ -166,7 +166,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Lower) { Lower o = (Lower) that;
if (that instanceof QOM.Lower) { QOM.Lower o = (QOM.Lower) that;
return
StringUtils.equals($string(), o.$string())
;

View File

@ -235,7 +235,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Lpad) { Lpad o = (Lpad) that;
if (that instanceof QOM.Lpad) { QOM.Lpad o = (QOM.Lpad) that;
return
StringUtils.equals($string(), o.$string()) &&
StringUtils.equals($length(), o.$length()) &&

View File

@ -153,7 +153,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Lt) { Lt o = (Lt) that;
if (that instanceof QOM.Lt) { QOM.Lt<?> o = (QOM.Lt<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -190,7 +190,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Md5) { Md5 o = (Md5) that;
if (that instanceof QOM.Md5) { QOM.Md5 o = (QOM.Md5) that;
return
StringUtils.equals($string(), o.$string())
;

View File

@ -146,7 +146,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Max) { Max o = (Max) that;
if (that instanceof QOM.Max) { QOM.Max<?> o = (QOM.Max<?>) that;
return
StringUtils.equals($field(), o.$field()) &&
$distinct() == o.$distinct()

View File

@ -149,7 +149,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Median) { Median o = (Median) that;
if (that instanceof QOM.Median) { QOM.Median o = (QOM.Median) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -146,7 +146,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Min) { Min o = (Min) that;
if (that instanceof QOM.Min) { QOM.Min<?> o = (QOM.Min<?>) that;
return
StringUtils.equals($field(), o.$field()) &&
$distinct() == o.$distinct()

View File

@ -168,7 +168,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Mod) { Mod o = (Mod) that;
if (that instanceof QOM.Mod) { QOM.Mod<?> o = (QOM.Mod<?>) that;
return
StringUtils.equals($dividend(), o.$dividend()) &&
StringUtils.equals($divisor(), o.$divisor())

View File

@ -164,7 +164,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Mul) { Mul o = (Mul) that;
if (that instanceof QOM.Mul) { QOM.Mul<?> o = (QOM.Mul<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -153,7 +153,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Ne) { Ne o = (Ne) that;
if (that instanceof QOM.Ne) { QOM.Ne<?> o = (QOM.Ne<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -150,7 +150,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Not) { Not o = (Not) that;
if (that instanceof QOM.Not) { QOM.Not o = (QOM.Not) that;
return
StringUtils.equals($condition(), o.$condition())
;

View File

@ -157,7 +157,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof NotField) { NotField o = (NotField) that;
if (that instanceof QOM.NotField) { QOM.NotField o = (QOM.NotField) that;
return
StringUtils.equals($field(), o.$field())
;

View File

@ -149,7 +149,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof NotIn) { NotIn o = (NotIn) that;
if (that instanceof QOM.NotIn) { QOM.NotIn<?> o = (QOM.NotIn<?>) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -183,7 +183,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof NotLike) { NotLike o = (NotLike) that;
if (that instanceof QOM.NotLike) { QOM.NotLike o = (QOM.NotLike) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($pattern(), o.$pattern()) &&

View File

@ -182,7 +182,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof NotLikeIgnoreCase) { NotLikeIgnoreCase o = (NotLikeIgnoreCase) that;
if (that instanceof QOM.NotLikeIgnoreCase) { QOM.NotLikeIgnoreCase o = (QOM.NotLikeIgnoreCase) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($pattern(), o.$pattern()) &&

View File

@ -182,7 +182,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof NotSimilarTo) { NotSimilarTo o = (NotSimilarTo) that;
if (that instanceof QOM.NotSimilarTo) { QOM.NotSimilarTo o = (QOM.NotSimilarTo) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($pattern(), o.$pattern()) &&

View File

@ -184,7 +184,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Nullif) { Nullif o = (Nullif) that;
if (that instanceof QOM.Nullif) { QOM.Nullif<?> o = (QOM.Nullif<?>) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($other(), o.$other())

View File

@ -225,7 +225,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Nvl) { Nvl o = (Nvl) that;
if (that instanceof QOM.Nvl) { QOM.Nvl<?> o = (QOM.Nvl<?>) that;
return
StringUtils.equals($value(), o.$value()) &&
StringUtils.equals($defaultValue(), o.$defaultValue())

View File

@ -182,7 +182,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof OctetLength) { OctetLength o = (OctetLength) that;
if (that instanceof QOM.OctetLength) { QOM.OctetLength o = (QOM.OctetLength) that;
return
StringUtils.equals($string(), o.$string())
;

View File

@ -176,7 +176,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Or) { Or o = (Or) that;
if (that instanceof QOM.Or) { QOM.Or o = (QOM.Or) that;
return
StringUtils.equals($arg1(), o.$arg1()) &&
StringUtils.equals($arg2(), o.$arg2())

View File

@ -262,7 +262,7 @@ implements
@Override
public boolean equals(Object that) {
if (that instanceof Overlay) { Overlay o = (Overlay) that;
if (that instanceof QOM.Overlay) { QOM.Overlay o = (QOM.Overlay) that;
return
StringUtils.equals($in(), o.$in()) &&
StringUtils.equals($placing(), o.$placing()) &&

Some files were not shown because too many files have changed in this diff Show More