android.arch.persistence.room.Ignore Java Examples

The following examples show how to use android.arch.persistence.room.Ignore. 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: ContactInfo.java    From Tok-Android with GNU General Public License v3.0 6 votes vote down vote up
@Ignore
public ContactInfo(ContactsKey key, String name, String alias, String signature,
    int contactType) {
    this.key = key;
    this.online = false;
    if (name != null) {
        this.name = ToxNickname.unsafeFromValue(name.getBytes());
    }
    if (alias != null) {
        this.alias = ToxNickname.unsafeFromValue(alias.getBytes());
    }
    this.signature = signature;
    this.blocked = false;
    this.mute = false;
    this.contactType = contactType;
}
 
Example #2
Source File: HistoryItem.java    From privacy-friendly-qr-scanner with GNU General Public License v3.0 5 votes vote down vote up
@Ignore protected HistoryItem(Parcel in) {
    _id = in.readInt();
    image = Converters.decodeImage(in.readString());
    text = in.readString();
    rawBytes = in.createByteArray();
    numBits = in.readInt();
    timestamp = in.readLong();
    format = BarcodeFormat.values()[in.readInt()];

    resultPoints = new ResultPoint[in.readInt()];
    for(int i = 0; i < resultPoints.length; i++) {
        resultPoints[i] = new ResultPoint(in.readFloat(), in.readFloat());
    }
}
 
Example #3
Source File: Message.java    From AndroidBlueprints with Apache License 2.0 5 votes vote down vote up
@Ignore
public Message(Long userId, Long threadId) {
    this.creDate = new Date();
    this.status = EnumMessageStatus.RECEIVED;
    this.userId = userId;
    this.threadId = threadId;
}
 
Example #4
Source File: Comment.java    From OfflineSampleApp with Apache License 2.0 5 votes vote down vote up
@Ignore
public Comment(long photoId, String commentText) {
    this.photoId = photoId;
    this.commentText = commentText;
    this.timestamp = System.currentTimeMillis();
    this.syncPending = true;
}
 
Example #5
Source File: DefaultMessage.java    From demo-firebase-android with The Unlicense 5 votes vote down vote up
@Ignore
public DefaultMessage(String sender, String receiver, String body, Timestamp createdAt) {
    this.sender = sender;
    this.receiver = receiver;
    this.body = body;
    this.createdAt = createdAt;
}
 
Example #6
Source File: ContactInfo.java    From Tok-Android with GNU General Public License v3.0 5 votes vote down vote up
@Ignore
public ContactInfo(ContactsKey key, boolean online, ToxNickname name, ToxNickname alias,
    String status, String signature, boolean blocked, boolean mute, int contactType) {
    this.key = key;
    this.online = online;
    this.name = name;
    this.alias = alias;
    this.status = status;
    this.signature = signature;
    this.blocked = blocked;
    this.mute = mute;
    this.contactType = contactType;
}
 
Example #7
Source File: ReportBlockedUrl.java    From SABS with MIT License 4 votes vote down vote up
@Ignore
public ReportBlockedUrl(String url, String packageName, Date blockDate) {
    this.url = url;
    this.packageName = packageName;
    this.blockDate = blockDate;
}
 
Example #8
Source File: FriendRequest.java    From Tok-Android with GNU General Public License v3.0 4 votes vote down vote up
@Ignore
public FriendRequest(ContactsKey requestKey, String requestMessage) {
    this.requestKey = requestKey;
    this.requestMessage = requestMessage;
}
 
Example #9
Source File: City.java    From Travel-Mate with MIT License 4 votes vote down vote up
@Ignore
public City(@NonNull String id, String nickname, String avatar) {
    this.mId = id;
    this.mNickname = nickname;
    this.mAvatar = avatar;
}
 
Example #10
Source File: City.java    From Travel-Mate with MIT License 4 votes vote down vote up
@Ignore
public City(String nickname, @NonNull String id) {
    this.mNickname = nickname;
    this.mId = id;
}
 
Example #11
Source File: FilledAutofillField.java    From input-samples with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId,
        @NonNull String fieldTypeName, @Nullable String textValue, @Nullable Long dateValue) {
    this(datasetId, fieldTypeName, textValue, dateValue, null);
}
 
Example #12
Source File: FilledAutofillField.java    From android-AutofillFramework with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName) {
    this(datasetId, fieldTypeName, null, null, null);
}
 
Example #13
Source File: FilledAutofillField.java    From android-AutofillFramework with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName,
                           @Nullable Boolean toggleValue) {
    this(datasetId, fieldTypeName, null, null, toggleValue);
}
 
Example #14
Source File: FilledAutofillField.java    From android-AutofillFramework with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName,
                           @Nullable Long dateValue) {
    this(datasetId, fieldTypeName, null, dateValue, null);
}
 
Example #15
Source File: FilledAutofillField.java    From android-AutofillFramework with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName,
                           @Nullable String textValue) {
    this(datasetId, fieldTypeName, textValue, null, null);
}
 
Example #16
Source File: FilledAutofillField.java    From android-AutofillFramework with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId,
        @NonNull String fieldTypeName, @Nullable String textValue, @Nullable Long dateValue) {
    this(datasetId, fieldTypeName, textValue, dateValue, null);
}
 
Example #17
Source File: Moment.java    From android-ponewheel with MIT License 4 votes vote down vote up
@Ignore
public Moment(long rideId, Date date) {
    this.rideId = rideId;
    this.date = date;
}
 
Example #18
Source File: FirewallWhitelistedPackage.java    From SABS with MIT License 4 votes vote down vote up
@Ignore
public FirewallWhitelistedPackage(String packageName, String policyPackageId) {
    this.packageName = packageName;
    this.policyPackageId = policyPackageId;
}
 
Example #19
Source File: WhiteUrl.java    From SABS with MIT License 4 votes vote down vote up
@Ignore
public WhiteUrl(String url) {
    this.url = url;
    this.insertedAt = new Date();
}
 
Example #20
Source File: FilledAutofillField.java    From input-samples with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName,
                           @Nullable Long dateValue) {
    this(datasetId, fieldTypeName, null, dateValue, null);
}
 
Example #21
Source File: UserBlockUrl.java    From SABS with MIT License 4 votes vote down vote up
@Ignore
public UserBlockUrl(String url) {
    this.insertedAt = new Date();
    this.url = url;
}
 
Example #22
Source File: FilledAutofillField.java    From input-samples with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName,
                           @Nullable String textValue) {
    this(datasetId, fieldTypeName, textValue, null, null);
}
 
Example #23
Source File: FirewallWhitelistedPackage.java    From notSABS with MIT License 4 votes vote down vote up
@Ignore
public FirewallWhitelistedPackage(String packageName, String policyPackageId) {
    this.packageName = packageName;
    this.policyPackageId = policyPackageId;
}
 
Example #24
Source File: WhiteUrl.java    From notSABS with MIT License 4 votes vote down vote up
@Ignore
public WhiteUrl(String url) {
    this.url = url;
    this.insertedAt = new Date();
}
 
Example #25
Source File: ReportBlockedUrl.java    From notSABS with MIT License 4 votes vote down vote up
@Ignore
public ReportBlockedUrl(String url, String packageName, Date blockDate) {
    this.url = url;
    this.packageName = packageName;
    this.blockDate = blockDate;
}
 
Example #26
Source File: UserBlockUrl.java    From notSABS with MIT License 4 votes vote down vote up
@Ignore
public UserBlockUrl(String url) {
    this.insertedAt = new Date();
    this.url = url;
}
 
Example #27
Source File: Note.java    From RoomDemo with MIT License 4 votes vote down vote up
@Ignore
public Note() {
}
 
Example #28
Source File: FilledAutofillField.java    From input-samples with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName) {
    this(datasetId, fieldTypeName, null, null, null);
}
 
Example #29
Source File: FilledAutofillField.java    From input-samples with Apache License 2.0 4 votes vote down vote up
@Ignore
public FilledAutofillField(@NonNull String datasetId, @NonNull String fieldTypeName,
                           @Nullable Boolean toggleValue) {
    this(datasetId, fieldTypeName, null, null, toggleValue);
}
 
Example #30
Source File: Task.java    From android-espresso-revealed with Apache License 2.0 2 votes vote down vote up
/**
 * Use this constructor to create a new completed Task.
 *
 * @param title       title of the task
 * @param description description of the task
 * @param completed   true if the task is completed, false if it's active
 */
@Ignore
public Task(@Nullable String title, @Nullable String description, @Nullable byte[] image, boolean completed) {
    this(title, description, UUID.randomUUID().toString(), image, completed);
}