
org.immutables.fixture.jdkonly.DefaultArray 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.jdkonly;
import javax.annotation.Nullable;
import org.immutables.value.Value;
@Value.Immutable
public abstract class DefaultArray {
@Value.Default
int[] prop() {
return new int[0];
}
@Nullable
@Value.Default
int[] props() {
return new int[0];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy