com.google.auto.value.AutoValue.CopyAnnotations Java Examples

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: ProjectEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@Nullable
@ColumnInfo(name = "description")
public abstract String getDescription();
 
Example #2
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract String getMappedByAttribute();
 
Example #3
Source File: CreateEntityTypeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {NotNull.class, Valid.class})
@Valid
@NotNull
public abstract I18nValue getLabel();
 
Example #4
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract I18nValue getLabel();
 
Example #5
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract String getParent();
 
Example #6
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = NotNull.class)
@NotNull
public abstract String getName();
 
Example #7
Source File: CreateEntityTypeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
@SerializedName(value = "extends")
public abstract String getExtends();
 
Example #8
Source File: CreateEntityTypeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
@SerializedName(value = "package")
public abstract String getPackage();
 
Example #9
Source File: CreateEntityTypeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
@SerializedName(value = "abstract")
public abstract Boolean getAbstract();
 
Example #10
Source File: CreateEntityTypeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract I18nValue getDescription();
 
Example #11
Source File: CreateEntityTypeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {NotEmpty.class, Valid.class})
@Valid
@NotEmpty
public abstract ImmutableList<CreateAttributeRequest> getAttributes();
 
Example #12
Source File: LayerEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@ColumnInfo(name = "default_style")
public abstract Style getDefaultStyle();
 
Example #13
Source File: LayerEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@Nullable
@ColumnInfo(name = "item_label")
public abstract String getItemLabel();
 
Example #14
Source File: LayerEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@Nullable
@ColumnInfo(name = "list_heading")
public abstract String getListHeading();
 
Example #15
Source File: LayerEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@NonNull
@PrimaryKey
@ColumnInfo(name = "id")
public abstract String getId();
 
Example #16
Source File: LayerEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@Nullable
@ColumnInfo(name = "project_id")
public abstract String getProjectId();
 
Example #17
Source File: ProjectEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@Nullable
@ColumnInfo(name = "title")
public abstract String getTitle();
 
Example #18
Source File: ProjectEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@NonNull
@PrimaryKey
@ColumnInfo(name = "id")
public abstract String getId();
 
Example #19
Source File: MultipleChoiceEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@PrimaryKey
@NonNull
@ColumnInfo(name = "field_id")
public abstract String getFieldId();
 
Example #20
Source File: MultipleChoiceEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@NonNull
@ColumnInfo(name = "type")
public abstract MultipleChoiceEntityType getType();
 
Example #21
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract Boolean getReadonly();
 
Example #22
Source File: ObservationEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@NonNull
@Embedded(prefix = "created_")
public abstract AuditInfoEntity getCreated();
 
Example #23
Source File: ObservationEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
/**
 * Returns a JSON object containing user responses keyed by their respective elementId in the form
 * identified by formId. Returns an empty JSON object if no responses have been provided.
 */
@CopyAnnotations
@ColumnInfo(name = "responses")
@NonNull
public abstract ResponseMap getResponses();
 
Example #24
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract String getDefaultValue();
 
Example #25
Source File: ObservationEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
/** Returns the id of the form to which this observation's responses apply. */
@CopyAnnotations
@ColumnInfo(name = "form_id")
@NonNull
public abstract String getFormId();
 
Example #26
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract String getValidationExpression();
 
Example #27
Source File: ObservationEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@PrimaryKey
@ColumnInfo(name = "id")
@NonNull
public abstract String getId();
 
Example #28
Source File: ObservationMutationEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@NonNull
@ColumnInfo(name = "observation_id")
public abstract String getObservationId();
 
Example #29
Source File: ObservationMutationEntity.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@CopyAnnotations
@NonNull
@ColumnInfo(name = "feature_type_id")
public abstract String getFeatureTypeId();
 
Example #30
Source File: CreateAttributeRequest.java    From molgenis with GNU Lesser General Public License v3.0 4 votes vote down vote up
@CopyAnnotations(exclude = {CheckForNull.class, Nullable.class})
@Nullable
@CheckForNull
public abstract Boolean getLabelAttribute();