androidx.room.Ignore Java Examples
The following examples show how to use
androidx.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: MovieEntry.java From android-popular-movies-app with Apache License 2.0 | 6 votes |
/** * Constructor * * @param movieId The movie ID * @param title Title of the movie * @param date Date the user added to the favorite list */ @Ignore public MovieEntry(int movieId, String originalTitle, String title, String posterPath, String overview, double voteAverage, String releaseDate, String backdropPath, Date date, String runtime, String releaseYear, String genre) { this.movieId = movieId; this.originalTitle = originalTitle; this.title = title; this.posterPath = posterPath; this.overview = overview; this.voteAverage = voteAverage; this.releaseDate = releaseDate; this.backdropPath = backdropPath; this.date = date; this.runtime = runtime; this.releaseYear = releaseYear; this.genre = genre; }
Example #2
Source File: ProvisionedMeshNode.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 5 votes |
/** * Constructor to be used only by hte library * * @param node {@link UnprovisionedMeshNode} */ @Ignore @RestrictTo(RestrictTo.Scope.LIBRARY) public ProvisionedMeshNode(final UnprovisionedMeshNode node) { uuid = node.getDeviceUuid().toString(); isConfigured = node.isConfigured(); nodeName = node.getNodeName(); mAddedNetKeys.add(new NodeKey(node.getKeyIndex())); mFlags = node.getFlags(); unicastAddress = node.getUnicastAddress(); deviceKey = node.getDeviceKey(); ttl = node.getTtl(); final NetworkKey networkKey = new NetworkKey(node.getKeyIndex(), node.getNetworkKey()); mTimeStampInMillis = node.getTimeStamp(); }
Example #3
Source File: MockTemplateApiBean.java From DoraemonKit with Apache License 2.0 | 5 votes |
@Ignore public MockTemplateApiBean(@NonNull String id, String mockApiName, String path, String method, String fromType, String query, String body, String group, String createPerson, String modifyPerson, String projectId) { this.id = id; this.mockApiName = mockApiName; this.path = path; this.method = method; this.fromType = fromType; this.query = query; this.body = body; this.group = group; this.createPerson = createPerson; this.modifyPerson = modifyPerson; this.projectId = projectId; }
Example #4
Source File: MockInterceptApiBean.java From DoraemonKit with Apache License 2.0 | 5 votes |
@Ignore public MockInterceptApiBean(@NonNull String id, String mockApiName, String path, String method, String fromType, String query, String body, String group, String createPerson, String modifyPerson, List<MockApiResponseBean.DataBean.DatalistBean.SceneListBean> sceneList) { this.id = id; this.mockApiName = mockApiName; this.path = path; this.method = method; this.fromType = fromType; this.query = query; this.body = body; this.group = group; this.createPerson = createPerson; this.modifyPerson = modifyPerson; this.sceneList = sceneList; }
Example #5
Source File: App.java From BaldPhone with Apache License 2.0 | 5 votes |
@Ignore @Override public void applyToHomeScreenAppView(HomeScreenAppView homeScreenAppView) { homeScreenAppView.setText(getLabel()); if (S.isValidContextForGlide(homeScreenAppView.iv_icon.getContext())) AppsDatabaseHelper.loadPic(this, homeScreenAppView.iv_icon); homeScreenAppView.setIntent(ComponentName.unflattenFromString(getFlattenComponentName())); }
Example #6
Source File: MeshKey.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 5 votes |
@Ignore MeshKey(final int keyIndex, @NonNull final byte[] key) { this.keyIndex = keyIndex; if (key.length != 16) { throw new IllegalArgumentException("Application key must be 16-bytes"); } this.key = key; }
Example #7
Source File: Alarm.java From BaldPhone with Apache License 2.0 | 5 votes |
@Ignore @Nullable public Calendar getNext() { if (isEnabled()) { Calendar a = Calendar.getInstance(); a.setTimeInMillis(AlarmScheduler.nextTimeAlarmWillWorkInMs(this)); return a; } return null; }
Example #8
Source File: Alarm.java From BaldPhone with Apache License 2.0 | 5 votes |
@Ignore public void addMinutes(int minutes) { this.minute += minutes; while (minute >= 60) { minute -= 60; hour++; if (hour >= 24) hour -= 24; } }
Example #9
Source File: AyahItem.java From QuranyApp with Apache License 2.0 | 5 votes |
@Ignore public AyahItem(int ayahIndex, int surahIndex, int ayahInSurahIndex, String text, String textClean) { this.ayahIndex = ayahIndex; this.surahIndex = surahIndex; this.ayahInSurahIndex = ayahInSurahIndex; this.text = text; this.textClean = textClean; }
Example #10
Source File: SuraItem.java From QuranyApp with Apache License 2.0 | 5 votes |
@Ignore public SuraItem(int index, int startIndex, int numOfAyahs, String name) { this.index = index; this.startIndex = startIndex; this.numOfAyahs = numOfAyahs; this.name = name; }
Example #11
Source File: Contact.java From call_manage with MIT License | 5 votes |
@Ignore public Contact(Cursor cursor) { this.contactId = cursor.getLong(cursor.getColumnIndex(Phone.CONTACT_ID)); Timber.i("CONTACT_ID: " + this.contactId); this.name = cursor.getString(cursor.getColumnIndex(Phone.DISPLAY_NAME_PRIMARY)); this.photoUri = cursor.getString(cursor.getColumnIndex(Phone.PHOTO_THUMBNAIL_URI)); this.phoneNumbers = new ArrayList<>(); this.phoneNumbers.add(cursor.getString(cursor.getColumnIndex(Phone.NUMBER))); this.isFavorite = "1".equals(cursor.getString(cursor.getColumnIndex(Phone.STARRED))); }
Example #12
Source File: BookmarkItem.java From QuranyApp with Apache License 2.0 | 5 votes |
@Ignore public BookmarkItem(long timemills, int scrollIndex, int pageNum, String suraName) { this.timemills = timemills; this.scrollIndex = scrollIndex; this.pageNum = pageNum; this.suraName = suraName; }
Example #13
Source File: SuraItem.java From QuranyApp with Apache License 2.0 | 5 votes |
@Ignore public SuraItem(int index, int startIndex, int numOfAyahs, String name) { this.index = index; this.startIndex = startIndex; this.numOfAyahs = numOfAyahs; this.name = name; }
Example #14
Source File: SuraItem.java From QuranyApp with Apache License 2.0 | 5 votes |
@Ignore public SuraItem(int index, int startIndex, int numOfAyahs, String name, String audioPath) { this.index = index; this.startIndex = startIndex; this.numOfAyahs = numOfAyahs; this.name = name; this.audioPath = audioPath; }
Example #15
Source File: ProvisionedMeshNode.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 5 votes |
@Ignore protected ProvisionedMeshNode(Parcel in) { //noinspection ConstantConditions uuid = in.readString(); isConfigured = in.readByte() != 1; nodeName = in.readString(); in.readList(mAddedNetKeys, NodeKey.class.getClassLoader()); mFlags = in.createByteArray(); unicastAddress = in.readInt(); deviceKey = in.createByteArray(); ttl = (Integer) in.readValue(Integer.class.getClassLoader()); sequenceNumber = in.readInt(); companyIdentifier = (Integer) in.readValue(Integer.class.getClassLoader()); productIdentifier = (Integer) in.readValue(Integer.class.getClassLoader()); versionIdentifier = (Integer) in.readValue(Integer.class.getClassLoader()); crpl = (Integer) in.readValue(Integer.class.getClassLoader()); nodeFeatures = (Features) in.readValue(Features.class.getClassLoader()); in.readMap(mElements, Element.class.getClassLoader()); sortElements(mElements); in.readList(mAddedAppKeys, NodeKey.class.getClassLoader()); mTimeStampInMillis = in.readLong(); mSeqAuth = in.readParcelable(SparseIntArrayParcelable.class.getClassLoader()); secureNetworkBeaconSupported = (Boolean) in.readValue(Boolean.class.getClassLoader()); networkTransmitSettings = in.readParcelable(NetworkTransmitSettings.class.getClassLoader()); relaySettings = in.readParcelable(RelaySettings.class.getClassLoader()); blackListed = in.readInt() != 1; }
Example #16
Source File: RecordItem.java From QuranyApp with Apache License 2.0 | 5 votes |
@Ignore public RecordItem(int startIndex, int endIndex, String fileName, String filePath) { this.startIndex = startIndex; this.endIndex = endIndex; this.fileName = fileName; this.filePath = filePath; }
Example #17
Source File: AllocatedSceneRange.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Ignore AllocatedSceneRange() { }
Example #18
Source File: Category.java From cwac-saferoom with Apache License 2.0 | 4 votes |
@Ignore Category(String title) { this(title, null); }
Example #19
Source File: Word.java From Android-Developer-Fundamentals-Version-2 with GNU General Public License v3.0 | 4 votes |
@Ignore public Word(int id, @NonNull String word) { this.id = id; this.mWord = word; }
Example #20
Source File: Event.java From Deadline with GNU General Public License v3.0 | 4 votes |
@Ignore public Event(@Nullable String title, @Nullable String note, long startDate, long endDate, int state, boolean durableEvent, int priority, int reminder, String category) { this(title, note, startDate, endDate, state, durableEvent, priority, UUID.randomUUID().toString(), reminder, category, System.currentTimeMillis()); }
Example #21
Source File: Category.java From Deadline with GNU General Public License v3.0 | 4 votes |
@Ignore public Category(String name) { this(name, UUID.randomUUID().toString()); }
Example #22
Source File: AllocatedUnicastRange.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Ignore AllocatedUnicastRange() { }
Example #23
Source File: Category.java From cwac-saferoom with Apache License 2.0 | 4 votes |
@Ignore public Category(String title, String parentId) { this(UUID.randomUUID().toString(), title, parentId); }
Example #24
Source File: VersionedThingy.java From cwac-saferoom with Apache License 2.0 | 4 votes |
@Ignore VersionedThingy() { this(UUID.randomUUID().toString(), 1); }
Example #25
Source File: Customer.java From cwac-saferoom with Apache License 2.0 | 4 votes |
@Ignore Customer(String postalCode, String displayName, LocationColumns officeLocation, Set<String> tags) { this(UUID.randomUUID().toString(), postalCode, displayName, new Date(), officeLocation, tags); }
Example #26
Source File: NotificationPreferenceEntity.java From zephyr with MIT License | 4 votes |
@Ignore public NotificationPreferenceEntity(@NonNull String packageName, boolean enabled) { this.packageName = packageName; this.enabled = enabled; }
Example #27
Source File: AppInfoEntity.java From zephyr with MIT License | 4 votes |
@Ignore public AppInfoEntity(@NonNull String packageName, @NonNull String title, @ColorInt int color) { this.packageName = packageName; this.title = title; this.color = color; }
Example #28
Source File: MeshKey.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Ignore MeshKey() { }
Example #29
Source File: RecordItem.java From QuranyApp with Apache License 2.0 | 4 votes |
@Ignore public RecordItem() { }
Example #30
Source File: SuraItem.java From QuranyApp with Apache License 2.0 | 4 votes |
@Ignore public SuraItem() { }