com.hashmapinc.tempus.WitsmlObjects.v1311.CsGroupDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WitsmlObjects Show documentation
Show all versions of WitsmlObjects Show documentation
This library assists in serializing and deserializing WITSML 1.3.1.1 and 1.4.1.1 Objects
package com.hashmapinc.tempus.WitsmlObjects.v1311;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* WITSML realtime group definition component object.
*
* Java class for cs_groupDefinition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cs_groupDefinition", propOrder = {
"id",
"multiplexed",
"interval",
"persistedAsLog",
"persistedAsWellLog",
"comment",
"channelDefinition"
})
public class CsGroupDefinition {
@XmlElement(required = true)
protected String id;
protected boolean multiplexed;
protected CsInterval interval;
protected RefNameString persistedAsLog;
protected RefNameString persistedAsWellLog;
protected String comment;
@XmlElement(required = true)
protected List channelDefinition;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the multiplexed property.
*
*/
public boolean isMultiplexed() {
return multiplexed;
}
/**
* Sets the value of the multiplexed property.
*
*/
public void setMultiplexed(boolean value) {
this.multiplexed = value;
}
/**
* Gets the value of the interval property.
*
* @return
* possible object is
* {@link CsInterval }
*
*/
public CsInterval getInterval() {
return interval;
}
/**
* Sets the value of the interval property.
*
* @param value
* allowed object is
* {@link CsInterval }
*
*/
public void setInterval(CsInterval value) {
this.interval = value;
}
/**
* Gets the value of the persistedAsLog property.
*
* @return
* possible object is
* {@link RefNameString }
*
*/
public RefNameString getPersistedAsLog() {
return persistedAsLog;
}
/**
* Sets the value of the persistedAsLog property.
*
* @param value
* allowed object is
* {@link RefNameString }
*
*/
public void setPersistedAsLog(RefNameString value) {
this.persistedAsLog = value;
}
/**
* Gets the value of the persistedAsWellLog property.
*
* @return
* possible object is
* {@link RefNameString }
*
*/
public RefNameString getPersistedAsWellLog() {
return persistedAsWellLog;
}
/**
* Sets the value of the persistedAsWellLog property.
*
* @param value
* allowed object is
* {@link RefNameString }
*
*/
public void setPersistedAsWellLog(RefNameString value) {
this.persistedAsWellLog = value;
}
/**
* Gets the value of the comment property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComment() {
return comment;
}
/**
* Sets the value of the comment property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComment(String value) {
this.comment = value;
}
/**
* Gets the value of the channelDefinition property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the channelDefinition property.
*
*
* For example, to add a new item, do as follows:
* {@code
* getChannelDefinition().add(newItem);
* }
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CsChannelDefinition }
*
*
*/
public List getChannelDefinition() {
if (channelDefinition == null) {
channelDefinition = new ArrayList();
}
return this.channelDefinition;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy