org.immutables.fixture.with.WithEnums Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-fixture Show documentation
Show all versions of value-fixture Show documentation
Module that contains all tests for the code generation capability
package org.immutables.fixture.with;
import org.immutables.value.Value;
import java.math.RoundingMode;
import java.util.Optional;
import javax.annotation.Nullable;
@Value.Immutable
public abstract class WithEnums {
public abstract RoundingMode getRoundingMode();
@Nullable
public abstract RoundingMode getNullableRoundingMode();
public abstract Optional getMaybeRoundingMode();
}