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

com.amazonaws.services.simspaceweaver.model.LiveSimulationState Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS SimSpace Weaver module holds the client classes that are used for communicating with AWS SimSpace Weaver Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.simspaceweaver.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* A collection of additional state information, such as domain and clock configuration. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LiveSimulationState implements Serializable, Cloneable, StructuredPojo { /** *

* A list of simulation clocks. *

* *

* At this time, a simulation has only one clock. *

*
*/ private java.util.List clocks; /** *

* A list of domains for the simulation. For more information about domains, see Key concepts in * the Amazon Web Services SimSpace Weaver User Guide. *

*/ private java.util.List domains; /** *

* A list of simulation clocks. *

* *

* At this time, a simulation has only one clock. *

*
* * @return A list of simulation clocks.

*

* At this time, a simulation has only one clock. *

*/ public java.util.List getClocks() { return clocks; } /** *

* A list of simulation clocks. *

* *

* At this time, a simulation has only one clock. *

*
* * @param clocks * A list of simulation clocks.

*

* At this time, a simulation has only one clock. *

*/ public void setClocks(java.util.Collection clocks) { if (clocks == null) { this.clocks = null; return; } this.clocks = new java.util.ArrayList(clocks); } /** *

* A list of simulation clocks. *

* *

* At this time, a simulation has only one clock. *

*
*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setClocks(java.util.Collection)} or {@link #withClocks(java.util.Collection)} if you want to override the * existing values. *

* * @param clocks * A list of simulation clocks.

*

* At this time, a simulation has only one clock. *

* @return Returns a reference to this object so that method calls can be chained together. */ public LiveSimulationState withClocks(SimulationClock... clocks) { if (this.clocks == null) { setClocks(new java.util.ArrayList(clocks.length)); } for (SimulationClock ele : clocks) { this.clocks.add(ele); } return this; } /** *

* A list of simulation clocks. *

* *

* At this time, a simulation has only one clock. *

*
* * @param clocks * A list of simulation clocks.

*

* At this time, a simulation has only one clock. *

* @return Returns a reference to this object so that method calls can be chained together. */ public LiveSimulationState withClocks(java.util.Collection clocks) { setClocks(clocks); return this; } /** *

* A list of domains for the simulation. For more information about domains, see Key concepts in * the Amazon Web Services SimSpace Weaver User Guide. *

* * @return A list of domains for the simulation. For more information about domains, see Key * concepts in the Amazon Web Services SimSpace Weaver User Guide. */ public java.util.List getDomains() { return domains; } /** *

* A list of domains for the simulation. For more information about domains, see Key concepts in * the Amazon Web Services SimSpace Weaver User Guide. *

* * @param domains * A list of domains for the simulation. For more information about domains, see Key * concepts in the Amazon Web Services SimSpace Weaver User Guide. */ public void setDomains(java.util.Collection domains) { if (domains == null) { this.domains = null; return; } this.domains = new java.util.ArrayList(domains); } /** *

* A list of domains for the simulation. For more information about domains, see Key concepts in * the Amazon Web Services SimSpace Weaver User Guide. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setDomains(java.util.Collection)} or {@link #withDomains(java.util.Collection)} if you want to override * the existing values. *

* * @param domains * A list of domains for the simulation. For more information about domains, see Key * concepts in the Amazon Web Services SimSpace Weaver User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public LiveSimulationState withDomains(Domain... domains) { if (this.domains == null) { setDomains(new java.util.ArrayList(domains.length)); } for (Domain ele : domains) { this.domains.add(ele); } return this; } /** *

* A list of domains for the simulation. For more information about domains, see Key concepts in * the Amazon Web Services SimSpace Weaver User Guide. *

* * @param domains * A list of domains for the simulation. For more information about domains, see Key * concepts in the Amazon Web Services SimSpace Weaver User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public LiveSimulationState withDomains(java.util.Collection domains) { setDomains(domains); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getClocks() != null) sb.append("Clocks: ").append(getClocks()).append(","); if (getDomains() != null) sb.append("Domains: ").append(getDomains()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LiveSimulationState == false) return false; LiveSimulationState other = (LiveSimulationState) obj; if (other.getClocks() == null ^ this.getClocks() == null) return false; if (other.getClocks() != null && other.getClocks().equals(this.getClocks()) == false) return false; if (other.getDomains() == null ^ this.getDomains() == null) return false; if (other.getDomains() != null && other.getDomains().equals(this.getDomains()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClocks() == null) ? 0 : getClocks().hashCode()); hashCode = prime * hashCode + ((getDomains() == null) ? 0 : getDomains().hashCode()); return hashCode; } @Override public LiveSimulationState clone() { try { return (LiveSimulationState) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.simspaceweaver.model.transform.LiveSimulationStateMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy