com.yahoo.athenz.msd.TransportPolicyScope Maven / Gradle / Ivy
The newest version!
//
// This file generated by rdl 1.5.2. Do not modify!
//
package com.yahoo.athenz.msd;
import com.yahoo.rdl.*;
//
// TransportPolicyScope - Scope of transport policy
//
public enum TransportPolicyScope {
ALL,
ONPREM,
AWS,
GCP;
public static TransportPolicyScope fromString(String v) {
for (TransportPolicyScope e : values()) {
if (e.toString().equals(v)) {
return e;
}
}
throw new IllegalArgumentException("Invalid string representation for TransportPolicyScope: " + v);
}
}