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

com.yahoo.athenz.zms.AssertionConditionOperator Maven / Gradle / Ivy

The newest version!
//
// This file generated by rdl 1.5.2. Do not modify!
//

package com.yahoo.athenz.zms;
import com.yahoo.rdl.*;

//
// AssertionConditionOperator - Allowed operators for assertion conditions
//
public enum AssertionConditionOperator {
    EQUALS;

    public static AssertionConditionOperator fromString(String v) {
        for (AssertionConditionOperator e : values()) {
            if (e.toString().equals(v)) {
                return e;
            }
        }
        throw new IllegalArgumentException("Invalid string representation for AssertionConditionOperator: " + v);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy