com.anaptecs.spring.base.ChildAA Maven / Gradle / Ivy
/*
* anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
*
* Copyright 2004 - 2019. All rights reserved.
*/
package com.anaptecs.spring.base;
import javax.validation.constraints.Size;
/**
* @author JEAF Generator
* @version JEAF Release 1.4.x
*/
@Deprecated
public class ChildAA extends ChildA {
/**
* Constant for the name of attribute "childAAAttribute".
*/
public static final String CHILDAAATTRIBUTE = "childAAAttribute";
/**
* Constant for the name of attribute "sizedArray".
*/
public static final String SIZEDARRAY = "sizedArray";
/**
* Constant for the name of attribute "requiredArray".
*/
public static final String REQUIREDARRAY = "requiredArray";
/**
* Multi line docs
*/
private byte childAAAttribute;
/**
*
*/
@Size(min = 10, max = 100)
private int sizedArray;
/**
*
*/
private String[] requiredArray;
/**
* Default constructor is only intended to be used for deserialization as many frameworks required that. For "normal"
* object creation builder should be used instead.
*/
protected ChildAA( ) {
// Nothing to do.
}
/**
* Initialize object using the passed builder.
*
* @param pBuilder Builder that should be used to initialize this object. The parameter must not be null.
*/
protected ChildAA( Builder pBuilder ) {
// Call constructor of super class.
super(pBuilder);
// Read attribute values from builder.
childAAAttribute = pBuilder.childAAAttribute;
sizedArray = pBuilder.sizedArray;
requiredArray = pBuilder.requiredArray;
}
/**
* Class implements builder to create a new instance of class ChildAA. As the class has read only attributes or
* associations instances can not be created directly. Instead this builder class has to be used.
*/
@Deprecated
public static class Builder extends ChildA.Builder {
/**
* Multi line docs
*/
private byte childAAAttribute;
/**
*
*/
@Size(min = 10, max = 100)
private int sizedArray;
/**
*
*/
private String[] requiredArray;
/**
* Use {@link #newBuilder()} instead of private constructor to create new builder.
*/
protected Builder( ) {
super();
}
/**
* Use {@link #newBuilder(ChildAA)} instead of private constructor to create new builder.
*/
protected Builder( ChildAA pObject ) {
super(pObject);
if (pObject != null) {
// Read attribute values from passed object.
childAAAttribute = pObject.childAAAttribute;
sizedArray = pObject.sizedArray;
requiredArray = pObject.requiredArray;
}
}
/**
* Method returns a new builder.
*
* @return {@link Builder} New builder that can be used to create new ImmutablePOJOParent objects.
*/
public static Builder newBuilder( ) {
return new Builder();
}
/**
* Method creates a new builder and initialize it with the data from the passed object.
*
* @param pObject Object that should be used to initialize the builder. The parameter may be null.
* @return {@link Builder} New builder that can be used to create new ChildAA objects. The method never returns
* null.
*/
public static Builder newBuilder( ChildAA pObject ) {
return new Builder(pObject);
}
/**
* Method sets the attribute "childAAttribute".
*
* @param pChildAAttribute Value to which the attribute "childAAttribute" should be set.
*/
@Override
public Builder setChildAAttribute( int pChildAAttribute ) {
// Call super class implementation.
super.setChildAAttribute(pChildAAttribute);
return this;
}
/**
* Method sets the attribute "childAAAttribute". Multi line docs
*
* @param pChildAAAttribute Value to which the attribute "childAAAttribute" should be set.
*/
public Builder setChildAAAttribute( byte pChildAAAttribute ) {
// Assign value to attribute
childAAAttribute = pChildAAAttribute;
return this;
}
/**
* Method sets the attribute "sizedArray".
*
* @param pSizedArray Value to which the attribute "sizedArray" should be set.
*/
public Builder setSizedArray( int pSizedArray ) {
// Assign value to attribute
sizedArray = pSizedArray;
return this;
}
/**
* Method sets the attribute "requiredArray".
*
* @param pRequiredArray Value to which the attribute "requiredArray" should be set.
*/
public Builder setRequiredArray( String[] pRequiredArray ) {
// Assign value to attribute
if (pRequiredArray != null) {
requiredArray = new String[pRequiredArray.length];
System.arraycopy(pRequiredArray, 0, requiredArray, 0, pRequiredArray.length);
}
else {
requiredArray = null;
}
return this;
}
/**
* Method creates a new instance of class ChildAA. The object will be initialized with the values of the builder.
*
* @return ChildAA Created object. The method never returns null.
*/
public ChildAA build( ) {
return new ChildAA(this);
}
}
/**
* Method returns the attribute "childAAAttribute". Multi line docs
*
* @return byte Value to which the attribute "childAAAttribute" is set.
*/
public byte getChildAAAttribute( ) {
return childAAAttribute;
}
/**
* Method sets the attribute "childAAAttribute". Multi line docs
*
* @param pChildAAAttribute Value to which the attribute "childAAAttribute" should be set.
*/
public void setChildAAAttribute( byte pChildAAAttribute ) {
// Assign value to attribute
childAAAttribute = pChildAAAttribute;
}
/**
* Method returns the attribute "sizedArray".
*
*
* @return int Value to which the attribute "sizedArray" is set.
*/
public int getSizedArray( ) {
return sizedArray;
}
/**
* Method sets the attribute "sizedArray".
*
*
* @param pSizedArray Value to which the attribute "sizedArray" should be set.
*/
public void setSizedArray( int pSizedArray ) {
// Assign value to attribute
sizedArray = pSizedArray;
}
/**
* Method returns the attribute "requiredArray".
*
*
* @return String Value to which the attribute "requiredArray" is set.
*/
public String[] getRequiredArray( ) {
String[] lReturnValue;
if (requiredArray != null) {
lReturnValue = new String[requiredArray.length];
System.arraycopy(requiredArray, 0, lReturnValue, 0, requiredArray.length);
}
else {
lReturnValue = null;
}
return lReturnValue;
}
/**
* Method sets the attribute "requiredArray".
*
*
* @param pRequiredArray Value to which the attribute "requiredArray" should be set.
*/
public void setRequiredArray( String[] pRequiredArray ) {
// Assign value to attribute
if (pRequiredArray != null) {
requiredArray = new String[pRequiredArray.length];
System.arraycopy(pRequiredArray, 0, requiredArray, 0, pRequiredArray.length);
}
else {
requiredArray = null;
}
}
/**
* 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.
*/
protected StringBuilder toStringBuilder( ) {
StringBuilder lBuilder = super.toStringBuilder();
lBuilder.append("childAAAttribute: ");
lBuilder.append(childAAAttribute);
lBuilder.append('\n');
lBuilder.append("sizedArray: ");
lBuilder.append(sizedArray);
lBuilder.append('\n');
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();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy