Home | History | Annotate | Download | only in model

Lines Matching refs:rawValue

152                     .get(type.rawValue) < type.specificMax);
169 * {@link EditType#rawValue} to counts, with the total overall count stored
187 final int count = typeCount.get(type.rawValue);
188 typeCount.put(type.rawValue, count + 1);
209 final Long rawValue = entry.getAsLong(kind.typeColumn);
210 if (rawValue == null) return null;
211 return getType(kind, rawValue.intValue());
220 final Integer rawValue = entry.getAsInteger(kind.typeColumn);
221 if (rawValue == null) return null;
222 return getType(kind, rawValue);
233 final int rawValue = cursor.getInt(index);
234 return getType(kind, rawValue);
238 * Find the {@link EditType} with the given {@link EditType#rawValue}.
240 public static EditType getType(DataKind kind, int rawValue) {
242 if (type.rawValue == rawValue) {
250 * Return the precedence for the the given {@link EditType#rawValue}, where
253 public static int getTypePrecedence(DataKind kind, int rawValue) {
256 if (type.rawValue == rawValue) {
286 final int count = typeCount.get(type.rawValue);
288 if (exactValue == type.rawValue) {
341 after.put(kind.typeColumn, type.rawValue);
547 * {@link EditType#rawValue} value.