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

com.ibm.fhir.model.type.code.AssertionOperatorType Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019, 2021
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.model.type.code;

import com.ibm.fhir.model.annotation.System;
import com.ibm.fhir.model.type.Code;
import com.ibm.fhir.model.type.Extension;
import com.ibm.fhir.model.type.String;

import java.util.Collection;
import java.util.Objects;

import javax.annotation.Generated;

@System("http://hl7.org/fhir/assert-operator-codes")
@Generated("com.ibm.fhir.tools.CodeGenerator")
public class AssertionOperatorType extends Code {
    /**
     * equals
     * 
     * 

Default value. Equals comparison. */ public static final AssertionOperatorType EQUALS = AssertionOperatorType.builder().value(Value.EQUALS).build(); /** * notEquals * *

Not equals comparison. */ public static final AssertionOperatorType NOT_EQUALS = AssertionOperatorType.builder().value(Value.NOT_EQUALS).build(); /** * in * *

Compare value within a known set of values. */ public static final AssertionOperatorType IN = AssertionOperatorType.builder().value(Value.IN).build(); /** * notIn * *

Compare value not within a known set of values. */ public static final AssertionOperatorType NOT_IN = AssertionOperatorType.builder().value(Value.NOT_IN).build(); /** * greaterThan * *

Compare value to be greater than a known value. */ public static final AssertionOperatorType GREATER_THAN = AssertionOperatorType.builder().value(Value.GREATER_THAN).build(); /** * lessThan * *

Compare value to be less than a known value. */ public static final AssertionOperatorType LESS_THAN = AssertionOperatorType.builder().value(Value.LESS_THAN).build(); /** * empty * *

Compare value is empty. */ public static final AssertionOperatorType EMPTY = AssertionOperatorType.builder().value(Value.EMPTY).build(); /** * notEmpty * *

Compare value is not empty. */ public static final AssertionOperatorType NOT_EMPTY = AssertionOperatorType.builder().value(Value.NOT_EMPTY).build(); /** * contains * *

Compare value string contains a known value. */ public static final AssertionOperatorType CONTAINS = AssertionOperatorType.builder().value(Value.CONTAINS).build(); /** * notContains * *

Compare value string does not contain a known value. */ public static final AssertionOperatorType NOT_CONTAINS = AssertionOperatorType.builder().value(Value.NOT_CONTAINS).build(); /** * evaluate * *

Evaluate the FHIRPath expression as a boolean condition. */ public static final AssertionOperatorType EVAL = AssertionOperatorType.builder().value(Value.EVAL).build(); private volatile int hashCode; private AssertionOperatorType(Builder builder) { super(builder); } /** * Get the value of this AssertionOperatorType as an enum constant. * @deprecated replaced by {@link #getValueAsEnum()} */ @Deprecated public ValueSet getValueAsEnumConstant() { return (value != null) ? ValueSet.from(value) : null; } /** * Get the value of this AssertionOperatorType as an enum constant. */ public Value getValueAsEnum() { return (value != null) ? Value.from(value) : null; } /** * Factory method for creating AssertionOperatorType objects from a passed enum value. * @deprecated replaced by {@link #of(Value)} */ @Deprecated public static AssertionOperatorType of(ValueSet value) { switch (value) { case EQUALS: return EQUALS; case NOT_EQUALS: return NOT_EQUALS; case IN: return IN; case NOT_IN: return NOT_IN; case GREATER_THAN: return GREATER_THAN; case LESS_THAN: return LESS_THAN; case EMPTY: return EMPTY; case NOT_EMPTY: return NOT_EMPTY; case CONTAINS: return CONTAINS; case NOT_CONTAINS: return NOT_CONTAINS; case EVAL: return EVAL; default: throw new IllegalStateException(value.name()); } } /** * Factory method for creating AssertionOperatorType objects from a passed enum value. */ public static AssertionOperatorType of(Value value) { switch (value) { case EQUALS: return EQUALS; case NOT_EQUALS: return NOT_EQUALS; case IN: return IN; case NOT_IN: return NOT_IN; case GREATER_THAN: return GREATER_THAN; case LESS_THAN: return LESS_THAN; case EMPTY: return EMPTY; case NOT_EMPTY: return NOT_EMPTY; case CONTAINS: return CONTAINS; case NOT_CONTAINS: return NOT_CONTAINS; case EVAL: return EVAL; default: throw new IllegalStateException(value.name()); } } /** * Factory method for creating AssertionOperatorType objects from a passed string value. * * @param value * A string that matches one of the allowed code values * @throws IllegalArgumentException * If the passed string cannot be parsed into an allowed code value */ public static AssertionOperatorType of(java.lang.String value) { return of(Value.from(value)); } /** * Inherited factory method for creating AssertionOperatorType objects from a passed string value. * * @param value * A string that matches one of the allowed code values * @throws IllegalArgumentException * If the passed string cannot be parsed into an allowed code value */ public static String string(java.lang.String value) { return of(Value.from(value)); } /** * Inherited factory method for creating AssertionOperatorType objects from a passed string value. * * @param value * A string that matches one of the allowed code values * @throws IllegalArgumentException * If the passed string cannot be parsed into an allowed code value */ public static Code code(java.lang.String value) { return of(Value.from(value)); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } AssertionOperatorType other = (AssertionOperatorType) obj; return Objects.equals(id, other.id) && Objects.equals(extension, other.extension) && Objects.equals(value, other.value); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, extension, value); hashCode = result; } return result; } public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends Code.Builder { private Builder() { super(); } @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } @Override public Builder value(java.lang.String value) { return (value != null) ? (Builder) super.value(Value.from(value).value()) : this; } /** * @deprecated replaced by {@link #value(Value)} */ @Deprecated public Builder value(ValueSet value) { return (value != null) ? (Builder) super.value(value.value()) : this; } /** * Primitive value for code * * @param value * An enum constant for AssertionOperatorType * * @return * A reference to this Builder instance */ public Builder value(Value value) { return (value != null) ? (Builder) super.value(value.value()) : this; } @Override public AssertionOperatorType build() { AssertionOperatorType assertionOperatorType = new AssertionOperatorType(this); if (validating) { validate(assertionOperatorType); } return assertionOperatorType; } protected void validate(AssertionOperatorType assertionOperatorType) { super.validate(assertionOperatorType); } protected Builder from(AssertionOperatorType assertionOperatorType) { super.from(assertionOperatorType); return this; } } @Deprecated public enum ValueSet { /** * equals * *

Default value. Equals comparison. */ EQUALS("equals"), /** * notEquals * *

Not equals comparison. */ NOT_EQUALS("notEquals"), /** * in * *

Compare value within a known set of values. */ IN("in"), /** * notIn * *

Compare value not within a known set of values. */ NOT_IN("notIn"), /** * greaterThan * *

Compare value to be greater than a known value. */ GREATER_THAN("greaterThan"), /** * lessThan * *

Compare value to be less than a known value. */ LESS_THAN("lessThan"), /** * empty * *

Compare value is empty. */ EMPTY("empty"), /** * notEmpty * *

Compare value is not empty. */ NOT_EMPTY("notEmpty"), /** * contains * *

Compare value string contains a known value. */ CONTAINS("contains"), /** * notContains * *

Compare value string does not contain a known value. */ NOT_CONTAINS("notContains"), /** * evaluate * *

Evaluate the FHIRPath expression as a boolean condition. */ EVAL("eval"); private final java.lang.String value; ValueSet(java.lang.String value) { this.value = value; } /** * @return * The java.lang.String value of the code represented by this enum */ public java.lang.String value() { return value; } /** * Factory method for creating AssertionOperatorType.Value values from a passed string value. * * @param value * A string that matches one of the allowed code values * @throws IllegalArgumentException * If the passed string cannot be parsed into an allowed code value */ public static ValueSet from(java.lang.String value) { for (ValueSet c : ValueSet.values()) { if (c.value.equals(value)) { return c; } } throw new IllegalArgumentException(value); } } public enum Value { /** * equals * *

Default value. Equals comparison. */ EQUALS("equals"), /** * notEquals * *

Not equals comparison. */ NOT_EQUALS("notEquals"), /** * in * *

Compare value within a known set of values. */ IN("in"), /** * notIn * *

Compare value not within a known set of values. */ NOT_IN("notIn"), /** * greaterThan * *

Compare value to be greater than a known value. */ GREATER_THAN("greaterThan"), /** * lessThan * *

Compare value to be less than a known value. */ LESS_THAN("lessThan"), /** * empty * *

Compare value is empty. */ EMPTY("empty"), /** * notEmpty * *

Compare value is not empty. */ NOT_EMPTY("notEmpty"), /** * contains * *

Compare value string contains a known value. */ CONTAINS("contains"), /** * notContains * *

Compare value string does not contain a known value. */ NOT_CONTAINS("notContains"), /** * evaluate * *

Evaluate the FHIRPath expression as a boolean condition. */ EVAL("eval"); private final java.lang.String value; Value(java.lang.String value) { this.value = value; } /** * @return * The java.lang.String value of the code represented by this enum */ public java.lang.String value() { return value; } /** * Factory method for creating AssertionOperatorType.Value values from a passed string value. * * @param value * A string that matches one of the allowed code values * @return * The corresponding AssertionOperatorType.Value or null if a null value was passed * @throws IllegalArgumentException * If the passed string is not null and cannot be parsed into an allowed code value */ public static Value from(java.lang.String value) { if (value == null) { return null; } switch (value) { case "equals": return EQUALS; case "notEquals": return NOT_EQUALS; case "in": return IN; case "notIn": return NOT_IN; case "greaterThan": return GREATER_THAN; case "lessThan": return LESS_THAN; case "empty": return EMPTY; case "notEmpty": return NOT_EMPTY; case "contains": return CONTAINS; case "notContains": return NOT_CONTAINS; case "eval": return EVAL; default: throw new IllegalArgumentException(value); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy