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

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

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

import java.util.List;
import org.immutables.value.Value;

@Value.Immutable
@Value.Style(finalInstanceFields = false, protectedNoargConstructor = true)
public interface NonFinalInstanceFields {
  int a();

  String b();

  List c();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy