All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.immutables.fixture.with.WithEnums Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy