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

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy