com.yahoo.athenz.msd.NetworkPolicyChangeEffect 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.*;
//
// NetworkPolicyChangeEffect - IMPACT indicates that a change in network policy
// will interfere with workings of one or more transport policies NO_IMPACT
// indicates that a change in network policy will not interfere with workings of
// any transport policy
//
public enum NetworkPolicyChangeEffect {
IMPACT,
NO_IMPACT;
public static NetworkPolicyChangeEffect fromString(String v) {
for (NetworkPolicyChangeEffect e : values()) {
if (e.toString().equals(v)) {
return e;
}
}
throw new IllegalArgumentException("Invalid string representation for NetworkPolicyChangeEffect: " + v);
}
}