com.launchdarkly.client.VersionedData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-client Show documentation
Show all versions of launchdarkly-client Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.client;
/**
* Common interface for string-keyed, versioned objects that can be kept in a {@link FeatureStore}.
* @since 3.0.0
*/
public interface VersionedData {
String getKey();
int getVersion();
boolean isDeleted();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy