![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.liverig.witsml.objects.ChannelSet Maven / Gradle / Ivy
The newest version!
package net.intelie.liverig.witsml.objects;
import java.util.List;
public class ChannelSet extends BasicObject {
private List indexes;
private List channels;
public ChannelSet(String uuid, List indexes, List channels) {
super(uuid);
this.indexes = indexes;
this.channels = channels;
}
public List getIndexes() {
return indexes;
}
public List channels() {
return channels;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy