001// -------------------------------------------------------------------------------- 002// Copyright 2002-2024 Echo Three, LLC 003// 004// Licensed under the Apache License, Version 2.0 (the "License"); 005// you may not use this file except in compliance with the License. 006// You may obtain a copy of the License at 007// 008// http://www.apache.org/licenses/LICENSE-2.0 009// 010// Unless required by applicable law or agreed to in writing, software 011// distributed under the License is distributed on an "AS IS" BASIS, 012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013// See the License for the specific language governing permissions and 014// limitations under the License. 015// -------------------------------------------------------------------------------- 016// Generated File -- DO NOT EDIT BY HAND 017// -------------------------------------------------------------------------------- 018 019/** 020 * UseNameElementDetailValue.java 021 */ 022 023package com.echothree.model.data.offer.server.value; 024 025import com.echothree.model.data.offer.common.pk.UseNameElementDetailPK; 026 027import com.echothree.model.data.offer.server.factory.UseNameElementDetailFactory; 028 029import com.echothree.model.data.offer.common.pk.UseNameElementPK; 030 031import com.echothree.util.common.exception.PersistenceCloneException; 032import com.echothree.util.common.exception.PersistenceNotNullException; 033 034import com.echothree.util.server.persistence.BaseValue; 035 036import java.io.Serializable; 037 038public class UseNameElementDetailValue 039 extends BaseValue<UseNameElementDetailPK> 040 implements Cloneable, Serializable { 041 042 private UseNameElementPK useNameElementPK; 043 private boolean useNameElementPKHasBeenModified = false; 044 private String useNameElementName; 045 private boolean useNameElementNameHasBeenModified = false; 046 private Integer offset; 047 private boolean offsetHasBeenModified = false; 048 private Integer length; 049 private boolean lengthHasBeenModified = false; 050 private String validationPattern; 051 private boolean validationPatternHasBeenModified = false; 052 private Long fromTime; 053 private boolean fromTimeHasBeenModified = false; 054 private Long thruTime; 055 private boolean thruTimeHasBeenModified = false; 056 057 private transient Integer _hashCode = null; 058 private transient String _stringValue = null; 059 060 private void constructFields(UseNameElementPK useNameElementPK, String useNameElementName, Integer offset, Integer length, String validationPattern, Long fromTime, Long thruTime) 061 throws PersistenceNotNullException { 062 checkForNull(useNameElementPK); 063 this.useNameElementPK = useNameElementPK; 064 checkForNull(useNameElementName); 065 this.useNameElementName = useNameElementName; 066 checkForNull(offset); 067 this.offset = offset; 068 checkForNull(length); 069 this.length = length; 070 this.validationPattern = validationPattern; 071 checkForNull(fromTime); 072 this.fromTime = fromTime; 073 checkForNull(thruTime); 074 this.thruTime = thruTime; 075 } 076 077 /** Creates a new instance of UseNameElementDetailValue */ 078 public UseNameElementDetailValue(UseNameElementDetailPK useNameElementDetailPK, UseNameElementPK useNameElementPK, String useNameElementName, Integer offset, Integer length, String validationPattern, Long fromTime, Long thruTime) 079 throws PersistenceNotNullException { 080 super(useNameElementDetailPK); 081 constructFields(useNameElementPK, useNameElementName, offset, length, validationPattern, fromTime, thruTime); 082 } 083 084 /** Creates a new instance of UseNameElementDetailValue */ 085 public UseNameElementDetailValue(UseNameElementPK useNameElementPK, String useNameElementName, Integer offset, Integer length, String validationPattern, Long fromTime, Long thruTime) 086 throws PersistenceNotNullException { 087 super(); 088 constructFields(useNameElementPK, useNameElementName, offset, length, validationPattern, fromTime, thruTime); 089 } 090 091 @Override 092 public UseNameElementDetailFactory getBaseFactoryInstance() { 093 return UseNameElementDetailFactory.getInstance(); 094 } 095 096 @Override 097 public UseNameElementDetailValue clone() { 098 Object result; 099 100 try { 101 result = super.clone(); 102 } catch (CloneNotSupportedException cnse) { 103 // This shouldn't happen, fail when it does. 104 throw new PersistenceCloneException(cnse); 105 } 106 107 return (UseNameElementDetailValue)result; 108 } 109 110 @Override 111 public UseNameElementDetailPK getPrimaryKey() { 112 if(_primaryKey == null) { 113 _primaryKey = new UseNameElementDetailPK(entityId); 114 } 115 116 return _primaryKey; 117 } 118 119 private void clearHashAndString() { 120 _hashCode = null; 121 _stringValue = null; 122 } 123 124 @Override 125 public int hashCode() { 126 if(_hashCode == null) { 127 int hashCode = 17; 128 129 hashCode = 37 * hashCode + ((entityId != null) ? entityId.hashCode() : 0); 130 131 hashCode = 37 * hashCode + ((useNameElementPK != null) ? useNameElementPK.hashCode() : 0); 132 hashCode = 37 * hashCode + ((useNameElementName != null) ? useNameElementName.hashCode() : 0); 133 hashCode = 37 * hashCode + ((offset != null) ? offset.hashCode() : 0); 134 hashCode = 37 * hashCode + ((length != null) ? length.hashCode() : 0); 135 hashCode = 37 * hashCode + ((validationPattern != null) ? validationPattern.hashCode() : 0); 136 hashCode = 37 * hashCode + ((fromTime != null) ? fromTime.hashCode() : 0); 137 hashCode = 37 * hashCode + ((thruTime != null) ? thruTime.hashCode() : 0); 138 139 _hashCode = hashCode; 140 } 141 142 return _hashCode; 143 } 144 145 @Override 146 public String toString() { 147 if(_stringValue == null) { 148 StringBuilder stringValue = new StringBuilder("{"); 149 150 stringValue.append("entityId=").append(getEntityId()); 151 152 stringValue.append(", useNameElementPK=").append(getUseNameElementPK()); 153 stringValue.append(", useNameElementName=").append(getUseNameElementName()); 154 stringValue.append(", offset=").append(getOffset()); 155 stringValue.append(", length=").append(getLength()); 156 stringValue.append(", validationPattern=").append(getValidationPattern()); 157 stringValue.append(", fromTime=").append(getFromTime()); 158 stringValue.append(", thruTime=").append(getThruTime()); 159 160 stringValue.append('}'); 161 162 _stringValue = stringValue.toString(); 163 } 164 return _stringValue; 165 } 166 167 @Override 168 public boolean equals(Object other) { 169 if(this == other) 170 return true; 171 172 if(!hasIdentity()) 173 return false; 174 175 if(other instanceof UseNameElementDetailValue) { 176 UseNameElementDetailValue that = (UseNameElementDetailValue)other; 177 178 if(!that.hasIdentity()) 179 return false; 180 181 Long thisEntityId = getEntityId(); 182 Long thatEntityId = that.getEntityId(); 183 184 boolean objectsEqual = thisEntityId.equals(thatEntityId); 185 if(objectsEqual) 186 objectsEqual = objectsEqual && isIdentical(that); 187 188 return objectsEqual; 189 } else { 190 return false; 191 } 192 } 193 194 public boolean isIdentical(Object other) { 195 if(other instanceof UseNameElementDetailValue) { 196 UseNameElementDetailValue that = (UseNameElementDetailValue)other; 197 boolean objectsEqual = true; 198 199 200 if(objectsEqual) { 201 UseNameElementPK thisUseNameElementPK = getUseNameElementPK(); 202 UseNameElementPK thatUseNameElementPK = that.getUseNameElementPK(); 203 204 if(thisUseNameElementPK == null) { 205 objectsEqual = objectsEqual && (thatUseNameElementPK == null); 206 } else { 207 objectsEqual = objectsEqual && thisUseNameElementPK.equals(thatUseNameElementPK); 208 } 209 } 210 211 if(objectsEqual) { 212 String thisUseNameElementName = getUseNameElementName(); 213 String thatUseNameElementName = that.getUseNameElementName(); 214 215 if(thisUseNameElementName == null) { 216 objectsEqual = objectsEqual && (thatUseNameElementName == null); 217 } else { 218 objectsEqual = objectsEqual && thisUseNameElementName.equals(thatUseNameElementName); 219 } 220 } 221 222 if(objectsEqual) { 223 Integer thisOffset = getOffset(); 224 Integer thatOffset = that.getOffset(); 225 226 if(thisOffset == null) { 227 objectsEqual = objectsEqual && (thatOffset == null); 228 } else { 229 objectsEqual = objectsEqual && thisOffset.equals(thatOffset); 230 } 231 } 232 233 if(objectsEqual) { 234 Integer thisLength = getLength(); 235 Integer thatLength = that.getLength(); 236 237 if(thisLength == null) { 238 objectsEqual = objectsEqual && (thatLength == null); 239 } else { 240 objectsEqual = objectsEqual && thisLength.equals(thatLength); 241 } 242 } 243 244 if(objectsEqual) { 245 String thisValidationPattern = getValidationPattern(); 246 String thatValidationPattern = that.getValidationPattern(); 247 248 if(thisValidationPattern == null) { 249 objectsEqual = objectsEqual && (thatValidationPattern == null); 250 } else { 251 objectsEqual = objectsEqual && thisValidationPattern.equals(thatValidationPattern); 252 } 253 } 254 255 if(objectsEqual) { 256 Long thisFromTime = getFromTime(); 257 Long thatFromTime = that.getFromTime(); 258 259 if(thisFromTime == null) { 260 objectsEqual = objectsEqual && (thatFromTime == null); 261 } else { 262 objectsEqual = objectsEqual && thisFromTime.equals(thatFromTime); 263 } 264 } 265 266 if(objectsEqual) { 267 Long thisThruTime = getThruTime(); 268 Long thatThruTime = that.getThruTime(); 269 270 if(thisThruTime == null) { 271 objectsEqual = objectsEqual && (thatThruTime == null); 272 } else { 273 objectsEqual = objectsEqual && thisThruTime.equals(thatThruTime); 274 } 275 } 276 277 return objectsEqual; 278 } else { 279 return false; 280 } 281 } 282 283 @Override 284 public boolean hasBeenModified() { 285 return useNameElementPKHasBeenModified || useNameElementNameHasBeenModified || offsetHasBeenModified || lengthHasBeenModified || validationPatternHasBeenModified || fromTimeHasBeenModified || thruTimeHasBeenModified; 286 } 287 288 @Override 289 public void clearHasBeenModified() { 290 useNameElementPKHasBeenModified = false; 291 useNameElementNameHasBeenModified = false; 292 offsetHasBeenModified = false; 293 lengthHasBeenModified = false; 294 validationPatternHasBeenModified = false; 295 fromTimeHasBeenModified = false; 296 thruTimeHasBeenModified = false; 297 } 298 299 public UseNameElementPK getUseNameElementPK() { 300 return useNameElementPK; 301 } 302 303 public void setUseNameElementPK(UseNameElementPK useNameElementPK) 304 throws PersistenceNotNullException { 305 checkForNull(useNameElementPK); 306 307 boolean update = true; 308 309 if(this.useNameElementPK != null) { 310 if(this.useNameElementPK.equals(useNameElementPK)) { 311 update = false; 312 } 313 } else if(useNameElementPK == null) { 314 update = false; 315 } 316 317 if(update) { 318 this.useNameElementPK = useNameElementPK; 319 useNameElementPKHasBeenModified = true; 320 clearHashAndString(); 321 } 322 } 323 324 public boolean getUseNameElementPKHasBeenModified() { 325 return useNameElementPKHasBeenModified; 326 } 327 328 public String getUseNameElementName() { 329 return useNameElementName; 330 } 331 332 public void setUseNameElementName(String useNameElementName) 333 throws PersistenceNotNullException { 334 checkForNull(useNameElementName); 335 336 boolean update = true; 337 338 if(this.useNameElementName != null) { 339 if(this.useNameElementName.equals(useNameElementName)) { 340 update = false; 341 } 342 } else if(useNameElementName == null) { 343 update = false; 344 } 345 346 if(update) { 347 this.useNameElementName = useNameElementName; 348 useNameElementNameHasBeenModified = true; 349 clearHashAndString(); 350 } 351 } 352 353 public boolean getUseNameElementNameHasBeenModified() { 354 return useNameElementNameHasBeenModified; 355 } 356 357 public Integer getOffset() { 358 return offset; 359 } 360 361 public void setOffset(Integer offset) 362 throws PersistenceNotNullException { 363 checkForNull(offset); 364 365 boolean update = true; 366 367 if(this.offset != null) { 368 if(this.offset.equals(offset)) { 369 update = false; 370 } 371 } else if(offset == null) { 372 update = false; 373 } 374 375 if(update) { 376 this.offset = offset; 377 offsetHasBeenModified = true; 378 clearHashAndString(); 379 } 380 } 381 382 public boolean getOffsetHasBeenModified() { 383 return offsetHasBeenModified; 384 } 385 386 public Integer getLength() { 387 return length; 388 } 389 390 public void setLength(Integer length) 391 throws PersistenceNotNullException { 392 checkForNull(length); 393 394 boolean update = true; 395 396 if(this.length != null) { 397 if(this.length.equals(length)) { 398 update = false; 399 } 400 } else if(length == null) { 401 update = false; 402 } 403 404 if(update) { 405 this.length = length; 406 lengthHasBeenModified = true; 407 clearHashAndString(); 408 } 409 } 410 411 public boolean getLengthHasBeenModified() { 412 return lengthHasBeenModified; 413 } 414 415 public String getValidationPattern() { 416 return validationPattern; 417 } 418 419 public void setValidationPattern(String validationPattern) { 420 boolean update = true; 421 422 if(this.validationPattern != null) { 423 if(this.validationPattern.equals(validationPattern)) { 424 update = false; 425 } 426 } else if(validationPattern == null) { 427 update = false; 428 } 429 430 if(update) { 431 this.validationPattern = validationPattern; 432 validationPatternHasBeenModified = true; 433 clearHashAndString(); 434 } 435 } 436 437 public boolean getValidationPatternHasBeenModified() { 438 return validationPatternHasBeenModified; 439 } 440 441 public Long getFromTime() { 442 return fromTime; 443 } 444 445 public void setFromTime(Long fromTime) 446 throws PersistenceNotNullException { 447 checkForNull(fromTime); 448 449 boolean update = true; 450 451 if(this.fromTime != null) { 452 if(this.fromTime.equals(fromTime)) { 453 update = false; 454 } 455 } else if(fromTime == null) { 456 update = false; 457 } 458 459 if(update) { 460 this.fromTime = fromTime; 461 fromTimeHasBeenModified = true; 462 clearHashAndString(); 463 } 464 } 465 466 public boolean getFromTimeHasBeenModified() { 467 return fromTimeHasBeenModified; 468 } 469 470 public Long getThruTime() { 471 return thruTime; 472 } 473 474 public void setThruTime(Long thruTime) 475 throws PersistenceNotNullException { 476 checkForNull(thruTime); 477 478 boolean update = true; 479 480 if(this.thruTime != null) { 481 if(this.thruTime.equals(thruTime)) { 482 update = false; 483 } 484 } else if(thruTime == null) { 485 update = false; 486 } 487 488 if(update) { 489 this.thruTime = thruTime; 490 thruTimeHasBeenModified = true; 491 clearHashAndString(); 492 } 493 } 494 495 public boolean getThruTimeHasBeenModified() { 496 return thruTimeHasBeenModified; 497 } 498 499}