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

klass.model.meta.domain.dto.OperatorDTO Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package klass.model.meta.domain.dto;

import com.fasterxml.jackson.annotation.JsonProperty;
/**
 * Auto-generated by {@link cool.klass.generator.dto.DataTransferObjectsGenerator}
 */
public enum OperatorDTO
{
    @JsonProperty("==")
    EQUALS,
    @JsonProperty("!=")
    NOT_EQUALS,
    @JsonProperty("<")
    LESS_THAN,
    @JsonProperty(">")
    GREATER_THAN,
    @JsonProperty("<=")
    LESS_THAN_EQUAL,
    @JsonProperty(">=")
    GREATER_THAN_EQUAL,
    @JsonProperty("in")
    IN,
    @JsonProperty("contains")
    CONTAINS,
    @JsonProperty("startsWith")
    STARTS_WITH,
    @JsonProperty("endsWith")
    ENDS_WITH,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy