All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anaptecs.spring.base.ChildBB Maven / Gradle / Ivy

The newest version!
/*
 * anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
 *
 * Copyright 2004 - 2019. All rights reserved.
 */
package com.anaptecs.spring.base;

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;

import jakarta.validation.constraints.Size;

public class ChildBB extends ChildB {
  /**
   * Constant for the name of attribute "childBBAttribute".
   */
  public static final String CHILDBBATTRIBUTE = "childBBAttribute";

  /**
   * Constant for the name of attribute "deprecatedAttribute".
   */
  @Deprecated
  public static final String DEPRECATEDATTRIBUTE = "deprecatedAttribute";

  /**
   * Constant for the name of attribute "deprecatedBs".
   */
  @Deprecated
  public static final String DEPRECATEDBS = "deprecatedBs";

  /**
   * Constant for the name of attribute "deprecatedParent".
   */
  @Deprecated
  public static final String DEPRECATEDPARENT = "deprecatedParent";

  /**
   * Constant for the name of attribute "deprecatedArray".
   */
  @Deprecated
  public static final String DEPRECATEDARRAY = "deprecatedArray";

  private Long childBBAttribute;

  @Deprecated
  private int deprecatedAttribute;

  @Deprecated
  private Set deprecatedBs;

  @Deprecated
  private ParentClass deprecatedParent;

  @Deprecated
  @Size(min = 0, max = 4711)
  private byte[] deprecatedArray;

  /**
   * Default constructor is only intended to be used for deserialization by tools like Jackson for JSON. For "normal"
   * object creation builder should be used instead.
   */
  protected ChildBB( ) {
    deprecatedBs = new HashSet();
  }

  /**
   * Initialize object using the passed builder.
   *
   * @param pBuilder Builder that should be used to initialize this object. The parameter must not be null.
   */
  protected ChildBB( Builder pBuilder ) {
    // Call constructor of super class.
    super(pBuilder);
    // Read attribute values from builder.
    childBBAttribute = pBuilder.childBBAttribute;
    deprecatedAttribute = pBuilder.deprecatedAttribute;
    if (pBuilder.deprecatedBs != null) {
      deprecatedBs = pBuilder.deprecatedBs;
    }
    else {
      deprecatedBs = new HashSet();
    }
    deprecatedParent = pBuilder.deprecatedParent;
    deprecatedArray = pBuilder.deprecatedArray;
  }

  /**
   * Method returns a new builder.
   *
   * @return {@link Builder} New builder that can be used to create new ChildBB objects.
   */
  public static Builder builder( ) {
    return new Builder();
  }

  /**
   * Convenience method to create new instance of class ChildBB.
   *
   *
   * @param pParentAttribute Value to which {@link #parentAttribute} should be set.
   *
   * @param pChildBBAttribute Value to which {@link #childBBAttribute} should be set.
   *
   * @param pDeprecatedAttribute Value to which {@link #deprecatedAttribute} should be set.
   *
   * @return {@link com.anaptecs.spring.base.ChildBB}
   */
  public static ChildBB of( String pParentAttribute, Long pChildBBAttribute, int pDeprecatedAttribute ) {
    ChildBB.Builder lBuilder = ChildBB.builder();
    lBuilder.setParentAttribute(pParentAttribute);
    lBuilder.setChildBBAttribute(pChildBBAttribute);
    lBuilder.setDeprecatedAttribute(pDeprecatedAttribute);
    return lBuilder.build();
  }

  /**
   * Class implements builder to create a new instance of class ChildBB.
   */
  public static class Builder extends ChildB.Builder {
    private Long childBBAttribute;

    @Deprecated
    private int deprecatedAttribute;

    @Deprecated
    private Set deprecatedBs;

    @Deprecated
    private ParentClass deprecatedParent;

    @Deprecated
    @Size(min = 0, max = 4711)
    private byte[] deprecatedArray;

    /**
     * Use {@link ChildBB#builder()} instead of private constructor to create new builder.
     */
    protected Builder( ) {
      super();
    }

    /**
     * Use {@link ChildBB#builder(ChildBB)} instead of private constructor to create new builder.
     */
    protected Builder( ChildBB pObject ) {
      super(pObject);
      if (pObject != null) {
        // Read attribute values from passed object.
        this.setChildBBAttribute(pObject.childBBAttribute);
        this.setDeprecatedAttribute(pObject.deprecatedAttribute);
        this.setDeprecatedBs(pObject.deprecatedBs);
        this.setDeprecatedParent(pObject.deprecatedParent);
        this.setDeprecatedArray(pObject.deprecatedArray);
      }
    }

    /**
     * Method sets attribute {@link #parentAttribute}.
* * @param pParentAttribute Value to which {@link #parentAttribute} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Override public Builder setParentAttribute( String pParentAttribute ) { // Call super class implementation. super.setParentAttribute(pParentAttribute); return this; } /** * Method sets attribute {@link #childBAttribute}.
* * @param pChildBAttribute Value to which {@link #childBAttribute} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Override public Builder setChildBAttribute( boolean[] pChildBAttribute ) { // Call super class implementation. super.setChildBAttribute(pChildBAttribute); return this; } /** * Method sets association {@link #composition}.
* * @param pComposition Collection to which {@link #composition} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Override public Builder setComposition( Set pComposition ) { // Call super class implementation. super.setComposition(pComposition); return this; } /** * Method adds the passed objects to association {@link #composition}.
* * @param pComposition Array of objects that should be added to {@link #composition}. The parameter may be null. * @return {@link Builder} Instance of this builder to support chaining. Method never returns null. */ public Builder addToComposition( ParentClass... pComposition ) { // Call super class implementation. super.addToComposition(pComposition); return this; } /** * Method sets attribute {@link #childBBAttribute}.
* * @param pChildBBAttribute Value to which {@link #childBBAttribute} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setChildBBAttribute( Long pChildBBAttribute ) { // Assign value to attribute childBBAttribute = pChildBBAttribute; return this; } /** * Method sets attribute {@link #deprecatedAttribute}.
* * @param pDeprecatedAttribute Value to which {@link #deprecatedAttribute} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Deprecated public Builder setDeprecatedAttribute( int pDeprecatedAttribute ) { // Assign value to attribute deprecatedAttribute = pDeprecatedAttribute; return this; } /** * Method sets association {@link #deprecatedBs}.
* * @param pDeprecatedBs Collection to which {@link #deprecatedBs} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Deprecated public Builder setDeprecatedBs( Set pDeprecatedBs ) { deprecatedBs = pDeprecatedBs; return this; } /** * Method adds the passed objects to association {@link #deprecatedBs}.
* * @param pDeprecatedBs Array of objects that should be added to {@link #deprecatedBs}. The parameter may be null. * @return {@link Builder} Instance of this builder to support chaining. Method never returns null. */ @Deprecated public Builder addToDeprecatedBs( ChildB... pDeprecatedBs ) { if (pDeprecatedBs != null) { if (deprecatedBs == null) { deprecatedBs = new HashSet(); } deprecatedBs.addAll(Arrays.asList(pDeprecatedBs)); } return this; } /** * Method sets association {@link #deprecatedParent}.
* * @param pDeprecatedParent Value to which {@link #deprecatedParent} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Deprecated public Builder setDeprecatedParent( ParentClass pDeprecatedParent ) { deprecatedParent = pDeprecatedParent; return this; } /** * Method sets attribute {@link #deprecatedArray}.
* * @param pDeprecatedArray Value to which {@link #deprecatedArray} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Deprecated public Builder setDeprecatedArray( byte[] pDeprecatedArray ) { // Assign value to attribute if (pDeprecatedArray != null) { deprecatedArray = new byte[pDeprecatedArray.length]; System.arraycopy(pDeprecatedArray, 0, deprecatedArray, 0, pDeprecatedArray.length); } else { deprecatedArray = null; } return this; } /** * Method creates a new instance of class ChildBB. The object will be initialized with the values of the builder. * * @return ChildBB Created object. The method never returns null. */ public ChildBB build( ) { return new ChildBB(this); } } /** * Method returns attribute {@link #childBBAttribute}.
* * @return {@link Long} Value to which {@link #childBBAttribute} is set. */ public Long getChildBBAttribute( ) { return childBBAttribute; } /** * Method sets attribute {@link #childBBAttribute}.
* * @param pChildBBAttribute Value to which {@link #childBBAttribute} should be set. */ public void setChildBBAttribute( Long pChildBBAttribute ) { // Assign value to attribute childBBAttribute = pChildBBAttribute; } /** * Method returns attribute {@link #deprecatedAttribute}.
* * @return int Value to which {@link #deprecatedAttribute} is set. */ @Deprecated public int getDeprecatedAttribute( ) { return deprecatedAttribute; } /** * Method sets attribute {@link #deprecatedAttribute}.
* * @param pDeprecatedAttribute Value to which {@link #deprecatedAttribute} should be set. */ @Deprecated public void setDeprecatedAttribute( int pDeprecatedAttribute ) { // Assign value to attribute deprecatedAttribute = pDeprecatedAttribute; } /** * Method returns association {@link #deprecatedBs}.
* * @return {@link Set} Value to which {@link #deprecatedBs} is set. The method never returns null and the * returned collection is unmodifiable. */ @Deprecated public Set getDeprecatedBs( ) { // Return all ChildB objects as unmodifiable collection. return Collections.unmodifiableSet(deprecatedBs); } /** * Method adds the passed object to {@link #deprecatedBs}. * * @param pDeprecatedBs Object that should be added to {@link #deprecatedBs}. The parameter must not be null. */ @Deprecated public void addToDeprecatedBs( ChildB pDeprecatedBs ) { // Add passed object to collection of associated ChildB objects. deprecatedBs.add(pDeprecatedBs); } /** * Method adds all passed objects to {@link #deprecatedBs}. * * @param pDeprecatedBs Collection with all objects that should be added to {@link #deprecatedBs}. The parameter must * not be null. */ @Deprecated public void addToDeprecatedBs( Collection pDeprecatedBs ) { // Add all passed objects. for (ChildB lNextObject : pDeprecatedBs) { this.addToDeprecatedBs(lNextObject); } } /** * Method removes the passed object from {@link #deprecatedBs}.
* * @param pDeprecatedBs Object that should be removed from {@link #deprecatedBs}. The parameter must not be null. */ @Deprecated public void removeFromDeprecatedBs( ChildB pDeprecatedBs ) { // Remove passed object from collection of associated ChildB objects. deprecatedBs.remove(pDeprecatedBs); } /** * Method removes all objects from {@link #deprecatedBs}. */ @Deprecated public void clearDeprecatedBs( ) { // Remove all objects from association "deprecatedBs". deprecatedBs.clear(); } /** * Method returns association {@link #deprecatedParent}.
* * @return {@link ParentClass} Value to which {@link #deprecatedParent} is set. */ @Deprecated public ParentClass getDeprecatedParent( ) { return deprecatedParent; } /** * Method sets association {@link #deprecatedParent}.
* * @param pDeprecatedParent Value to which {@link #deprecatedParent} should be set. */ @Deprecated public void setDeprecatedParent( ParentClass pDeprecatedParent ) { deprecatedParent = pDeprecatedParent; } /** * Method unsets {@link #deprecatedParent}. */ @Deprecated public final void unsetDeprecatedParent( ) { deprecatedParent = null; } /** * Method returns attribute {@link #deprecatedArray}.
* * @return byte[] Value to which {@link #deprecatedArray} is set. */ @Deprecated public byte[] getDeprecatedArray( ) { byte[] lReturnValue; if (deprecatedArray != null) { lReturnValue = new byte[deprecatedArray.length]; System.arraycopy(deprecatedArray, 0, lReturnValue, 0, deprecatedArray.length); } else { lReturnValue = null; } return lReturnValue; } /** * Method sets attribute {@link #deprecatedArray}.
* * @param pDeprecatedArray Value to which {@link #deprecatedArray} should be set. */ @Deprecated public void setDeprecatedArray( byte[] pDeprecatedArray ) { // Assign value to attribute if (pDeprecatedArray != null) { deprecatedArray = new byte[pDeprecatedArray.length]; System.arraycopy(pDeprecatedArray, 0, deprecatedArray, 0, pDeprecatedArray.length); } else { deprecatedArray = null; } } @Override public int hashCode( ) { final int lPrime = 31; int lResult = super.hashCode(); lResult = lPrime * lResult + Objects.hashCode(childBBAttribute); lResult = lPrime * lResult + deprecatedAttribute; lResult = lPrime * lResult + Objects.hashCode(deprecatedBs); lResult = lPrime * lResult + Objects.hashCode(deprecatedParent); lResult = lPrime * lResult + Arrays.hashCode(deprecatedArray); return lResult; } @Override public boolean equals( Object pObject ) { boolean lEquals; if (this == pObject) { lEquals = true; } else if (pObject == null) { lEquals = false; } else if (!super.equals(pObject)) { lEquals = false; } else if (this.getClass() != pObject.getClass()) { lEquals = false; } else { ChildBB lOther = (ChildBB) pObject; lEquals = Objects.equals(childBBAttribute, lOther.childBBAttribute) && deprecatedAttribute == lOther.deprecatedAttribute && Objects.equals(deprecatedBs, lOther.deprecatedBs) && Objects.equals(deprecatedParent, lOther.deprecatedParent) && Arrays.equals(deprecatedArray, lOther.deprecatedArray); } return lEquals; } /** * Method returns a StringBuilder that can be used to create a String representation of this object. The returned * StringBuilder also takes care about attributes of super classes. * * @return {@link StringBuilder} StringBuilder representing this object. The method never returns null. */ @Override public StringBuilder toStringBuilder( String pIndent ) { StringBuilder lBuilder = super.toStringBuilder(pIndent); lBuilder.append(pIndent); lBuilder.append("childBBAttribute: "); lBuilder.append(childBBAttribute); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("deprecatedAttribute: "); lBuilder.append(deprecatedAttribute); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("deprecatedBs: "); if (deprecatedBs != null) { lBuilder.append(deprecatedBs.size()); lBuilder.append(" element(s)"); } else { lBuilder.append(" null"); } lBuilder.append(System.lineSeparator()); if (deprecatedBs != null) { for (ChildB lNext : deprecatedBs) { lBuilder.append(lNext.toStringBuilder(pIndent + " ")); lBuilder.append(System.lineSeparator()); } } lBuilder.append(pIndent); lBuilder.append("deprecatedParent: "); if (deprecatedParent != null) { lBuilder.append(System.lineSeparator()); lBuilder.append(deprecatedParent.toStringBuilder(pIndent + " ")); } else { lBuilder.append(" null"); lBuilder.append(System.lineSeparator()); } lBuilder.append(pIndent); lBuilder.append("deprecatedArray: "); if (deprecatedArray != null) { lBuilder.append(Arrays.toString(deprecatedArray)); } else { lBuilder.append(" null"); } lBuilder.append(System.lineSeparator()); return lBuilder; } /** * Method creates a new String with the values of all attributes of this class. All references to other objects will * be ignored. * * @return {@link String} String representation of this object. The method never returns null. */ @Override public String toString( ) { return this.toStringBuilder("").toString(); } /** * Method creates a new builder and initializes it with the data of this object. * * @return {@link Builder} New builder that can be used to create new ChildBB objects. The method never returns null. */ public Builder toBuilder( ) { return new Builder(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy