Java Code Examples for com.google.auto.value.AutoValue#CopyAnnotations

The following examples show how to use com.google.auto.value.AutoValue#CopyAnnotations . 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: OfflineAreaEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@AutoValue.CopyAnnotations
@NonNull
@PrimaryKey
@ColumnInfo(name = "id")
public abstract String getId();
 
Example 2
Source File: OfflineAreaEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@AutoValue.CopyAnnotations
@NonNull
@ColumnInfo(name = "state")
public abstract OfflineAreaEntityState getState();
 
Example 3
Source File: OfflineAreaEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@AutoValue.CopyAnnotations
@ColumnInfo(name = "north")
public abstract double getNorth();
 
Example 4
Source File: OfflineAreaEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@AutoValue.CopyAnnotations
@ColumnInfo(name = "south")
public abstract double getSouth();
 
Example 5
Source File: OfflineAreaEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@AutoValue.CopyAnnotations
@ColumnInfo(name = "east")
public abstract double getEast();
 
Example 6
Source File: OfflineAreaEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@AutoValue.CopyAnnotations
@ColumnInfo(name = "west")
public abstract double getWest();
 
Example 7
Source File: BazelModuleContext.java    From bazel with Apache License 2.0 2 votes vote down vote up
/**
 * Transitive digest of the .bzl file of the {@link com.google.devtools.build.lib.syntax.Module}
 * itself and all files it transitively loads.
 */
@SuppressWarnings({"AutoValueImmutableFields", "mutable"})
@AutoValue.CopyAnnotations
public abstract byte[] bzlTransitiveDigest();