io.github.primelib.jira4j.restv2.model.CompoundClause Maven / Gradle / Ivy
Show all versions of jira4j-rest-v2 Show documentation
package io.github.primelib.jira4j.restv2.model;
import java.util.function.Consumer;
import org.jetbrains.annotations.ApiStatus;
import javax.annotation.processing.Generated;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.NoArgsConstructor;
import lombok.AllArgsConstructor;
import lombok.experimental.Accessors;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* CompoundClause
*
*/
@Getter
@Setter
@EqualsAndHashCode
@ToString
@Accessors(fluent = true, chain = true)
@NoArgsConstructor(access = AccessLevel.PROTECTED, force = true)
@Builder
@JsonPropertyOrder({
"clauses",
"operator"
})
@JsonTypeName("CompoundClause")
@Generated(value = "io.github.primelib.primecodegen.javafeign.JavaFeignGenerator")
public class CompoundClause {
/**
* The list of nested clauses.
*/
@JsonProperty("clauses")
protected List clauses;
/**
* The operator between the clauses.
*/
@JsonProperty("operator")
protected OperatorEnum operator;
/**
* Constructs a validated instance of {@link CompoundClause}.
*
* @param spec the specification to process
*/
public CompoundClause(Consumer spec) {
spec.accept(this);
}
/**
* Constructs a validated instance of {@link CompoundClause}.
*
* NOTE: This constructor is not considered stable and may change if the model is updated. Consider using {@link #CompoundClause(Consumer)} instead.
* @param clauses The list of nested clauses.
* @param operator The operator between the clauses.
*/
@ApiStatus.Internal
public CompoundClause(List clauses, OperatorEnum operator) {
this.clauses = clauses;
this.operator = operator;
}
/**
* The operator between the clauses.
*/
@AllArgsConstructor
public enum OperatorEnum {
AND("and"),
OR("or"),
NOT("not");
private static final OperatorEnum[] VALUES = values(); // prevent allocating a new array for every call to values()
private final String value;
@JsonCreator
public static OperatorEnum of(String input) {
if (input != null) {
for (OperatorEnum v : VALUES) {
if (input.equalsIgnoreCase(v.value))
return v;
}
}
return null;
}
@JsonValue
public String getValue() {
return value;
}
}
}