![JAR search and dependency download from the Maven repository](/logo.png)
com.falkonry.helper.models.Signal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Falkonry Java Client to access Condition Prediction APIs.
package com.falkonry.helper.models;
/*!
* falkonry-java-client
* Copyright(c) 2017 Falkonry Inc
* MIT Licensed
*/
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
/**
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Signal {
private String tagIdentifier;
private String delimiter;
private String valueIdentifier;
private Boolean isSignalPrefix;
/**
*
* @return
*/
public String getTagIdentifier() {
return tagIdentifier;
}
/**
*
* @param tagIdentifier
*/
public void setTagIdentifier(String tagIdentifier) {
this.tagIdentifier = tagIdentifier;
}
/**
*
* @param delimiter
*/
public void setDelimiter(String delimiter) {
this.delimiter = delimiter;
}
/**
*
* @return
*/
public String getDelimiter() {
return delimiter;
}
/**
*
* @return
*/
public String getValueIdentifier() {
return valueIdentifier;
}
/**
*
* @param valueIdentifier
*/
public void setValueIdentifier(String valueIdentifier) {
this.valueIdentifier = valueIdentifier;
}
/**
*
* @return
*/
public Boolean getIsSignalPrefix() {
return isSignalPrefix;
}
/**
*
* @param isSignalPrefix
*/
public void setIsSignalPrefix(Boolean isSignalPrefix) {
this.isSignalPrefix = isSignalPrefix;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy