Java Code Examples for org.immutables.value.Value#NaturalOrder
The following examples show how to use
org.immutables.value.Value#NaturalOrder .
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: XcodeWorkspaceConfigDescription.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<BuildTarget> getExtraShallowTargets();
Example 2
Source File: JvmLibraryArg.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<BuildTarget> getAnnotationProcessorDeps();
Example 3
Source File: GwtBinaryDescription.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<BuildTarget> getModuleDeps();
Example 4
Source File: HasSystemFrameworkAndLibraries.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<FrameworkPath> getLibraries();
Example 5
Source File: PlatformDescription.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder @Hint(isConfigurable = false) ImmutableSortedSet<UnconfiguredBuildTarget> getDeps();
Example 6
Source File: SortedCollectionWrapper.java From immutables with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedMap<Elem, Void> getElemMap();
Example 7
Source File: JavaLibraryDescription.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<BuildTarget> getSourceOnlyAbiDeps();
Example 8
Source File: RustCommonArgs.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<String> getFeatures();
Example 9
Source File: JavaLibraryDescription.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<SourcePath> getResources();
Example 10
Source File: HaskellCompilerFlags.java From buck with Apache License 2.0 | 4 votes |
/** Haskell compilation flags exported from packages. */ @AddToRuleKey @Value.NaturalOrder public abstract ImmutableSortedMap<String, ImmutableList<String>> getPackageExportedFlags();
Example 11
Source File: HasGoLinkable.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<SourcePath> getResources();
Example 12
Source File: ImprovisedFactories.java From immutables with Apache License 2.0 | 4 votes |
@Builder.Factory public static Iterable<Object> concat(List<String> strings, @Value.NaturalOrder SortedSet<Integer> numbers) { return Iterables.<Object>concat(strings, numbers); }
Example 13
Source File: ShTestDescription.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedSet<SourcePath> getResources();
Example 14
Source File: JavaLibraryDeps.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder abstract ImmutableSortedSet<BuildTarget> getSourceOnlyAbiDepTargets();
Example 15
Source File: HasTests.java From buck with Apache License 2.0 | 4 votes |
/** @return A list of tests of this target. */ @Hint(isDep = false) @Value.NaturalOrder ImmutableSortedSet<BuildTarget> getTests();
Example 16
Source File: JavaLibraryDeps.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder abstract ImmutableSortedSet<BuildTarget> getExportedDepTargets();
Example 17
Source File: VersionRootBuilder.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder ImmutableSortedMap<BuildTarget, Optional<Constraint>> getVersionedDeps();
Example 18
Source File: TestSuiteDescription.java From buck with Apache License 2.0 | 4 votes |
/** Test or TestSuite targets that should be invoked when this rule run through buck test */ @Value.NaturalOrder ImmutableSortedSet<BuildTarget> getTests();
Example 19
Source File: ConstructorArgMarshallerImmutableTest.java From buck with Apache License 2.0 | 4 votes |
@Value.NaturalOrder abstract ImmutableSortedSet<String> getImmutableSortedSet();
Example 20
Source File: HaskellCompilerFlags.java From buck with Apache License 2.0 | 2 votes |
/** * Packages that are transitively used by the exposed packages. Modules in this compilation cannot * import modules from these. */ @AddToRuleKey @Value.NaturalOrder public abstract ImmutableSortedMap<String, HaskellPackage> getPackages();