
net.intelie.liverig.plugin.widgets.CompressionDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
The newest version!
package net.intelie.liverig.plugin.widgets;
import org.jetbrains.annotations.Nullable;
public class CompressionDetails {
private boolean enabled;
@Nullable
private Double maxVariation;
@Nullable
private Double maxOutputPeriod;
public CompressionDetails(boolean enabled) {
this.enabled = enabled;
}
public CompressionDetails(boolean enabled, @Nullable Double maxVariation, @Nullable Double maxOutputPeriod) {
this.enabled = enabled;
this.maxVariation = maxVariation;
this.maxOutputPeriod = maxOutputPeriod;
}
public boolean isEnabled() {
return enabled;
}
public Double getMaxVariation() {
return maxVariation;
}
public Double getMaxOutputPeriod() {
return maxOutputPeriod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy