io.github.primelib.jira4j.restv3.model.FunctionReferenceData Maven / Gradle / Ivy
Show all versions of jira4j-rest-v3 Show documentation
package io.github.primelib.jira4j.restv3.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;
/**
* FunctionReferenceData
*
*/
@Getter
@Setter
@EqualsAndHashCode
@ToString
@Accessors(fluent = true, chain = true)
@NoArgsConstructor(access = AccessLevel.PROTECTED, force = true)
@Builder
@JsonPropertyOrder({
"displayName",
"isList",
"supportsListAndSingleValueOperators",
"types",
"value"
})
@JsonTypeName("FunctionReferenceData")
@Generated(value = "io.github.primelib.primecodegen.javafeign.JavaFeignGenerator")
public class FunctionReferenceData {
/**
* The display name of the function.
*/
@JsonProperty("displayName")
protected String displayName;
/**
* Whether the function can take a list of arguments.
*/
@JsonProperty("isList")
protected IsListEnum isList;
/**
* Whether the function supports both single and list value operators.
*/
@JsonProperty("supportsListAndSingleValueOperators")
protected SupportsListAndSingleValueOperatorsEnum supportsListAndSingleValueOperators;
/**
* The data types returned by the function.
*/
@JsonProperty("types")
protected List types;
/**
* The function identifier.
*/
@JsonProperty("value")
protected String value;
/**
* Constructs a validated instance of {@link FunctionReferenceData}.
*
* @param spec the specification to process
*/
public FunctionReferenceData(Consumer spec) {
spec.accept(this);
}
/**
* Constructs a validated instance of {@link FunctionReferenceData}.
*
* NOTE: This constructor is not considered stable and may change if the model is updated. Consider using {@link #FunctionReferenceData(Consumer)} instead.
* @param displayName The display name of the function.
* @param isList Whether the function can take a list of arguments.
* @param supportsListAndSingleValueOperators Whether the function supports both single and list value operators.
* @param types The data types returned by the function.
* @param value The function identifier.
*/
@ApiStatus.Internal
public FunctionReferenceData(String displayName, IsListEnum isList, SupportsListAndSingleValueOperatorsEnum supportsListAndSingleValueOperators, List types, String value) {
this.displayName = displayName;
this.isList = isList;
this.supportsListAndSingleValueOperators = supportsListAndSingleValueOperators;
this.types = types;
this.value = value;
}
/**
* Whether the function can take a list of arguments.
*/
@AllArgsConstructor
public enum IsListEnum {
TRUE("true"),
FALSE("false");
private static final IsListEnum[] VALUES = values(); // prevent allocating a new array for every call to values()
private final String value;
@JsonCreator
public static IsListEnum of(String input) {
if (input != null) {
for (IsListEnum v : VALUES) {
if (input.equalsIgnoreCase(v.value))
return v;
}
}
return null;
}
@JsonValue
public String getValue() {
return value;
}
}
/**
* Whether the function supports both single and list value operators.
*/
@AllArgsConstructor
public enum SupportsListAndSingleValueOperatorsEnum {
TRUE("true"),
FALSE("false");
private static final SupportsListAndSingleValueOperatorsEnum[] VALUES = values(); // prevent allocating a new array for every call to values()
private final String value;
@JsonCreator
public static SupportsListAndSingleValueOperatorsEnum of(String input) {
if (input != null) {
for (SupportsListAndSingleValueOperatorsEnum v : VALUES) {
if (input.equalsIgnoreCase(v.value))
return v;
}
}
return null;
}
@JsonValue
public String getValue() {
return value;
}
}
}