AutoValue: Cursor Extension


Source link: https://github.com/gabrielittner/auto-value-cursor

AutoValue: Cursor Extension

An extension for Google's AutoValue that generates a createFromCursor(Cursor c) method for AutoValue annotated objects.

Usage

Include auto-value-cursor in your project and add a static factory method to your auto-value object.

import com.gabrielittner.auto.value.cursor.ColumnName;  @AutoValue public abstract class User {

abstract String id();

abstract String name();

// use the annotation if column name and field name aren't the same
@ColumnName("email_address") abstract String email();

 public static User create(Cursor cursor) {

  return AutoValue_User.createFromCursor(cursor);

}

 // Optional: if your project includes RxJava the extension will generate a Func1<Cursor, User>
public static Func1<Cursor, User> mapper() {

  return AutoValue_User.MAPPER;

}

 // Optional: if your project includes RxJava 2 the extension will generate a Function<Cursor, User>
public static Function<Cursor, User> mapper() {

  return AutoValue_User.MAPPER_FUNCTION;

}

 // Optional: When you include an abstract method that returns ContentValues and doesn't have
// any parameters the extension will implement it for you
abstract ContentValues toContentValues();
 
}

Important: The extension will only be applied when there is

  • a static method that returns your value type ( User in the example) and takes a Cursor as parameter
  • and/or a static method that returns a Func1<Cursor, YourValueType> and has no parameters

Custom types

The following types are supported by default:

  • byte[]
  • double/ Double
  • float/ Float
  • int/ Integer
  • long/ Long
  • short/ Short
  • String
  • boolean/ Boolean

For other types, you need to use the @ColumnAdapter annotation and specify a factory class that implements the ColumnTypeAdapter interface. When you need to map multiple columns to one custom type you can simply ignore the given columnName. Eg.:

User.java:

@AutoValue public abstract class User {

abstract String id();

abstract String name();

@ColumnAdapter(AvatarAdapter.class) Avatar avatar();

 public static User createFromCursor(Cursor cursor) {

  return AutoValue_User.createFromCursor(cursor);

}
 
}

AvatarAdapter.java:

public class AvatarAdapter implements ColumnTypeAdapter<Avatar> {

public Avatar fromCursor(Cursor cursor, String columnName) {

  String smallImageUrl = cursor.getString(cursor.getColumnIndex("small_image_url");

  String largeImageUrl = cursor.getString(cursor.getColumnIndex("large_image_url");

  return new Avatar(smallImageUrl, largeImageUrl);

}

public void toContentValues(ContentValues values, String columnName, Avatar value) {

  // leave this empty when you don't use a "toContentValues()" method
  values.putString("small_image_url", value.smallImageUrl);

  values.putString"large_image_url", value.largeImageUrl);

}
 
}

Avatar.java:

public class Avatar {

final String smallImageUrl;
final String largeImageUrl;
 public Avatar(String smallImageUrl, String largeImageUrl) {

  this.smallImageUrl = smallImageUrl;
  this.largeImageUrl = largeImageUrl;

}
 
}

Download

Add a Gradle dependency:

annotationProcessor 'com.gabrielittner.auto.value:auto-value-cursor:1.1.0' // if you need the @ColumnName or @ColumnAdapter annotations also include this: compile 'com.gabrielittner.auto.value:auto-value-cursor-annotations:1.1.0'

Snapshots of the development version are available in Sonatype's snapshots repository.

License

This project is heavily based on Ryan Harter's auto-value-gson

Copyright 2015 Ryan Harter. Copyright 2015 Gabriel Ittner.  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

PhotoCropper is a light-weight but sharp and smart tool to help you cropping photos on android devices. By providing a simple callback interface for developers and encapsulating the tricky things of cropping photos into a library. It makes the logic much more easier and simpler.

Android Timeline View Library (Using RecyclerView) is simple implementation used to display view like Tracking of shipment/order, steppers etc.

Knife is a rich text editor component for writing documents in Android.

Convert Icon-font (e.g. font-awesome) to Drawable or Bitmap for Android.

This library provides you useful interfaces which tell loading-state and intercept url loading.

Quick action dialog fragment.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes