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

org.immutables.fixture.style.ForceEqualsInWithers Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
package org.immutables.fixture.style;

import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import javax.annotation.Nullable;
import org.immutables.value.Value;

@Value.Style(forceEqualsInWithers = true)
@Value.Immutable
public interface ForceEqualsInWithers {
  float f();
  double d();
  String s();
  boolean b();
  char c();
  Optional o();
  List l();
  @Nullable Set st();
  Map mp();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy