AutoValue: Moshi Extension


Source link: https://github.com/rharter/auto-value-moshi

AutoValue: Moshi Extension

An extension for Google's AutoValue that creates a simple Moshi JsonAdapterFactory for each AutoValue annotated object.

Usage

Simply include auto-value-moshi in your project and add a public static method with the following signature to classes you want to get Moshi JsonAdapters. You can also annotate your properties using @Json to define an alternate name for de/serialization.

@AutoValue public abstract class Foo {

abstract String bar();

@Json(name="Baz") abstract String baz();

 public static JsonAdapter<Foo> jsonAdapter(Moshi moshi) {

  return new AutoValue_Foo.MoshiJsonAdapter(moshi);

}
 
}

Now build your project and de/serialize your Foo.

Generics support

If the annotated class uses generics, the static method needs a little modification. Simply add a Type[] parameter and pass it to the generated MoshiJsonAdapter class.

@AutoValue public abstract class Foo<T> {

  abstract T data();

 public static JsonAdapter<Foo<T>> jsonAdapter(Moshi moshi, Type[] types) {

return new AutoValue_Foo.MoshiJsonAdapter(moshi, types);

  
}
 
}

Factory

Optionally, auto-value-moshi can create a single JsonAdapter.Factory so that you don't have to add each generated JsonAdapter to your Moshi instance manually.

To generate a JsonAdapter.Factory for all of your auto-value-moshi classes, simply create an abstract class that implements JsonAdapter.Factory and annotate it with @MoshiAdapterFactory, and auto-value-moshi will create an implementation for you. You simply need to provide a static factory method, just like your AutoValue classes, and you can use the generated JsonAdapter.Factory to help Moshi de/serialize your types.

@MoshiAdapterFactory public abstract class MyAdapterFactory implements JsonAdapter.Factory {

 // Static factory method to access the package
// private generated implementation
public static JsonAdapter.Factory create() {

  return new AutoValueMoshi_MyAdapterFactory();

}

 
}

Then you simply need to register the Factory with Moshi.

Moshi moshi = new Moshi.Builder()
  .add(MyAdapterFactory.create())
  .build();

Download

Add a Gradle dependency:

annotationProcessor 'com.ryanharter.auto.value:auto-value-moshi:0.4.4'  // if you use the @MoshiAdapterFactory annotation, you'll need to add the 'annotations' artifact  // as a provided dependency: provided 'com.ryanharter.auto.value:auto-value-moshi-annotations:0.4.4'

License

Copyright 2015 Ryan Harter.  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

Show image as a popup on a click event or any event. Simply set the image as drawable and thats it! And also you can set width, height & background color as you want.

The app is mostly based on using the Text too speech. Basically the app mimics the behaviour of a bingo caller person. The user will be able to play bingo in an organized manner, knowing every chip played and awarding the winner players.

ChipView helps you in creating attractive [Chips] for your application. ChipView provides you a flexible way of creating and organizing your chip by following ways:

  • Adding a background or text color to your chip
  • Creating custom layout for your chip
  • Can even create multi color chips

Simple View Behavior for Android CoordinatorLayout.

Simple library for fast right-left list item swiping.

A simple way to convert any model to multipart.

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