com.wavefront.predicates.StringExpression Maven / Gradle / Ivy
The newest version!
package com.wavefront.predicates;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* An expression that returns a string.
*
* @author [email protected].
*/
public interface StringExpression extends BaseExpression {
/**
* Get a string value.
*
* @param entity entity to get the value from.
* @return string value
*/
@Nonnull
String getString(@Nullable Object entity);
}