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

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

There is a newer version: 1.24.1
Show 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.Set;

import javax.validation.constraints.Size;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonSetter;
import com.fasterxml.jackson.annotation.Nulls;

/**
 * Multi
* line
* class
* comment * * @author JEAF Generator * @version JEAF Release 1.4.x */ @JsonIgnoreProperties(ignoreUnknown = true) public class ChildB extends ParentClass { /** * Constant for the name of attribute "childBAttribute". */ public static final String CHILDBATTRIBUTE = "childBAttribute"; /** * Constant for the name of attribute "composition". */ public static final String COMPOSITION = "composition"; /** * A child attribute */ @Size(min = 11, max = 42) private boolean[] childBAttribute; /** * the composition */ @JsonSetter(nulls = Nulls.SKIP) private Set composition; /** * 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 ChildB( ) { composition = 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 ChildB( Builder pBuilder ) { // Call constructor of super class. super(pBuilder); // Read attribute values from builder. childBAttribute = pBuilder.childBAttribute; if (pBuilder.composition != null) { composition = pBuilder.composition; } else { composition = new HashSet(); } } /** * Method returns a new builder. * * @return {@link Builder} New builder that can be used to create new ChildB objects. */ public static Builder builder( ) { return new Builder(); } /** * Convenience method to create new instance of class ChildB. * * * @param pParentAttribute Value to which {@link #parentAttribute} should be set. * * @return {@link com.anaptecs.spring.base.ChildB} */ public static ChildB of( String pParentAttribute ) { ChildB.Builder lBuilder = ChildB.builder(); lBuilder.setParentAttribute(pParentAttribute); return lBuilder.build(); } /** * Class implements builder to create a new instance of class ChildB. */ public static class Builder extends ParentClass.Builder { /** * A child attribute */ @Size(min = 11, max = 42) private boolean[] childBAttribute; /** * the composition */ private Set composition; /** * Use {@link ChildB#builder()} instead of private constructor to create new builder. */ protected Builder( ) { super(); } /** * Use {@link ChildB#builder(ChildB)} instead of private constructor to create new builder. */ protected Builder( ChildB pObject ) { super(pObject); if (pObject != null) { // Read attribute values from passed object. this.setChildBAttribute(pObject.childBAttribute); this.setComposition(pObject.composition); } } /** * 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. */ public Builder setChildBAttribute( boolean[] pChildBAttribute ) { // Assign value to attribute if (pChildBAttribute != null) { childBAttribute = new boolean[pChildBAttribute.length]; System.arraycopy(pChildBAttribute, 0, childBAttribute, 0, pChildBAttribute.length); } else { childBAttribute = null; } 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. */ public Builder setComposition( Set pComposition ) { // To ensure immutability we have to copy the content of the passed collection. if (pComposition != null) { composition = new HashSet(pComposition); } else { composition = null; } 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 ) { if (pComposition != null) { if (composition == null) { composition = new HashSet(); } composition.addAll(Arrays.asList(pComposition)); } return this; } /** * Method creates a new instance of class ChildB. The object will be initialized with the values of the builder. * * @return ChildB Created object. The method never returns null. */ public ChildB build( ) { return new ChildB(this); } } /** * Method returns attribute {@link #childBAttribute}.
* A child attribute * * @return boolean[] Value to which {@link #childBAttribute} is set. */ public boolean[] getChildBAttribute( ) { boolean[] lReturnValue; if (childBAttribute != null) { lReturnValue = new boolean[childBAttribute.length]; System.arraycopy(childBAttribute, 0, lReturnValue, 0, childBAttribute.length); } else { lReturnValue = null; } return lReturnValue; } /** * Method sets attribute {@link #childBAttribute}.
* A child attribute * * @param pChildBAttribute Value to which {@link #childBAttribute} should be set. */ public void setChildBAttribute( boolean[] pChildBAttribute ) { // Assign value to attribute if (pChildBAttribute != null) { childBAttribute = new boolean[pChildBAttribute.length]; System.arraycopy(pChildBAttribute, 0, childBAttribute, 0, pChildBAttribute.length); } else { childBAttribute = null; } } /** * Method returns association {@link #composition}.
* the composition * * @return {@link Set} Value to which {@link #composition} is set. The method never returns null and the * returned collection is unmodifiable. */ public Set getComposition( ) { // Return all ParentClass objects as unmodifiable collection. return Collections.unmodifiableSet(composition); } /** * Method adds the passed object to {@link #composition}. * * @param pComposition Object that should be added to {@link #composition}. The parameter must not be null. */ public void addToComposition( ParentClass pComposition ) { // Add passed object to collection of associated ParentClass objects. composition.add(pComposition); } /** * Method adds all passed objects to {@link #composition}. * * @param pComposition Collection with all objects that should be added to {@link #composition}. The parameter must * not be null. */ public void addToComposition( Collection pComposition ) { // Add all passed objects. for (ParentClass lNextObject : pComposition) { this.addToComposition(lNextObject); } } /** * Method removes the passed object from {@link #composition}.
* * @param pComposition Object that should be removed from {@link #composition}. The parameter must not be null. */ public void removeFromComposition( ParentClass pComposition ) { // Remove passed object from collection of associated ParentClass objects. composition.remove(pComposition); } /** * Method removes all objects from {@link #composition}. */ public void clearComposition( ) { // Remove all objects from association "composition". composition.clear(); } /** * 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("childBAttribute: "); if (childBAttribute != null) { lBuilder.append(Arrays.toString(childBAttribute)); } else { lBuilder.append(" null"); } lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("composition: "); if (composition != null) { lBuilder.append(composition.size()); lBuilder.append(" element(s)"); } else { lBuilder.append(" null"); } lBuilder.append(System.lineSeparator()); if (composition != null) { for (ParentClass lNext : composition) { lBuilder.append(lNext.toStringBuilder(pIndent + " ")); 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 ChildB objects. The method never returns null. */ public Builder toBuilder( ) { return new Builder(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy