Java Code Examples for org.immutables.value.Value#Parameter
The following examples show how to use
org.immutables.value.Value#Parameter .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EnclosingHiddenImplementation.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter public abstract Optional<Integer> cons();
Example 2
Source File: RawCloudInfo.java From cf-java-client-sap with Apache License 2.0 | 4 votes |
@Value.Parameter public abstract GetInfoResponse getResource();
Example 3
Source File: _ResponseAssessment.java From tac-kbp-eal with MIT License | 4 votes |
@Value.Parameter public abstract Optional<FieldAssessment> justificationSupportsRole();
Example 4
Source File: Tuple.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter(false) @Value.Default default int gray() { return black() - gray(); }
Example 5
Source File: ValueImmutableInfo.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter @Override public abstract boolean prehash();
Example 6
Source File: StyleInfo.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter @Override public abstract String typeModifiable();
Example 7
Source File: StaticMultiSelectMenuIF.java From slack-client with Apache License 2.0 | 4 votes |
@Value.Parameter Text getPlaceholder();
Example 8
Source File: EREAligner.java From tac-kbp-eal with MIT License | 4 votes |
@Value.Parameter abstract Symbol type();
Example 9
Source File: UsingAllOptionals.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter io.atlassian.fugue.Option<String> fo3();
Example 10
Source File: StyleInfo.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter @Override public abstract boolean unsafeDefaultAndDerived();
Example 11
Source File: Companion.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter int first();
Example 12
Source File: Form.java From hmftools with GNU General Public License v3.0 | 4 votes |
@Override @Value.Parameter @NotNull public abstract String name();
Example 13
Source File: AnyGetterInBuilder.java From immutables with Apache License 2.0 | 4 votes |
@JsonAnyGetter @Value.Parameter public abstract Map<String, JsonNode> any();
Example 14
Source File: CodeList.java From hmftools with GNU General Public License v3.0 | 4 votes |
@Override @Value.Parameter @NotNull public abstract String oid();
Example 15
Source File: Optionals.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter int v1();
Example 16
Source File: JdkOptionals.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter OptionalDouble d1();
Example 17
Source File: RawCloudServiceBroker.java From cf-java-client-sap with Apache License 2.0 | 4 votes |
@Value.Parameter public abstract Resource<ServiceBrokerEntity> getResource();
Example 18
Source File: _DocLevelArgLinking.java From tac-kbp-eal with MIT License | 4 votes |
@Value.Parameter public abstract ImmutableSet<ScoringEventFrame> eventFrames();
Example 19
Source File: UseOptionalCollections2.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter Optional<List<V>> bs();
Example 20
Source File: UseCompactOptionals.java From immutables with Apache License 2.0 | 4 votes |
@Value.Parameter OptionalInt b();