
com.launchdarkly.sdk.server.MigrationOp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-java-server-sdk Show documentation
Show all versions of launchdarkly-java-server-sdk Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.sdk.server;
/**
* The type of migration operation.
*/
public enum MigrationOp {
READ("read"),
WRITE("write");
private final String strValue;
MigrationOp(final String strValue) {
this.strValue = strValue;
}
@Override
public String toString() {
return strValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy