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

com.anaptecs.spring.base.UICStop 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.List;

import com.anaptecs.jeaf.validation.api.spring.SpringValidationExecutor;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class UICStop extends Stop {
  /**
   * Constant for the name of attribute "uicCode".
   */
  public static final String UICCODE = "uicCode";

  private String uicCode;

  /**
   * 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 UICStop( ) {
  }

  /**
   * Initialize object using the passed builder.
   *
   * @param pBuilder Builder that should be used to initialize this object. The parameter must not be null.
   */
  protected UICStop( Builder pBuilder ) {
    // Call constructor of super class.
    super(pBuilder);
    // Read attribute values from builder.
    uicCode = pBuilder.uicCode;
  }

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

  /**
   * Convenience method to create new instance of class UICStop.
   *
   *
   * @param pName Value to which {@link #name} should be set.
   *
   * @param pUicCode Value to which {@link #uicCode} should be set.
   *
   * @return {@link com.anaptecs.spring.base.UICStop}
   */
  public static UICStop of( String pName, String pUicCode ) {
    UICStop.Builder lBuilder = UICStop.builder();
    lBuilder.setName(pName);
    lBuilder.setUicCode(pUicCode);
    return lBuilder.build();
  }

  /**
   * Class implements builder to create a new instance of class UICStop.
   */
  public static class Builder extends Stop.Builder {
    private String uicCode;

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

    /**
     * Use {@link UICStop#builder(UICStop)} instead of private constructor to create new builder.
     */
    protected Builder( UICStop pObject ) {
      super(pObject);
      if (pObject != null) {
        // Read attribute values from passed object.
        this.setUicCode(pObject.uicCode);
      }
    }

    /**
     * Method sets attribute {@link #name}.
* * @param pName Value to which {@link #name} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Override public Builder setName( String pName ) { // Call super class implementation. super.setName(pName); return this; } /** * Method sets association {@link #links}.
* * @param pLinks Collection to which {@link #links} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ @Override public Builder setLinks( List pLinks ) { // Call super class implementation. super.setLinks(pLinks); return this; } /** * Method adds the passed objects to association {@link #links}.
* * @param pLinks Array of objects that should be added to {@link #links}. The parameter may be null. * @return {@link Builder} Instance of this builder to support chaining. Method never returns null. */ public Builder addToLinks( LinkObject... pLinks ) { // Call super class implementation. super.addToLinks(pLinks); return this; } /** * Method sets attribute {@link #uicCode}.
* * @param pUicCode Value to which {@link #uicCode} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setUicCode( String pUicCode ) { // Assign value to attribute uicCode = pUicCode; return this; } /** * Method creates a new instance of class UICStop. The object will be initialized with the values of the builder. * * @return UICStop Created object. The method never returns null. */ public UICStop build( ) { UICStop lObject = new UICStop(this); SpringValidationExecutor.getValidationExecutor().validateObject(lObject); return lObject; } } /** * Method returns attribute {@link #uicCode}.
* * @return {@link String} Value to which {@link #uicCode} is set. */ public String getUicCode( ) { return uicCode; } /** * Method sets attribute {@link #uicCode}.
* * @param pUicCode Value to which {@link #uicCode} should be set. */ public void setUicCode( String pUicCode ) { // Assign value to attribute uicCode = pUicCode; } /** * 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("uicCode: "); lBuilder.append(uicCode); 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 UICStop objects. The method never returns null. */ public Builder toBuilder( ) { return new Builder(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy