Android Transformer


Source link: https://github.com/txusballesteros/android-transformer

Android Transformer

Android Transformer It's a Java library to manage your object transformations between your POJO objects.

Version

How to use

Add the library dependency to your build.gradle file.

dependencies {

  ...
  compile 'com.mobandme:android-transformer:1.2'
  provided 'com.mobandme:android-transformer-compiler:1.2' 
}

If you are using any other libraries with AnnotationsProcessors like ButterKnife, Realm, etc... You need to set this in your build.gradle to exclude the Processor that is already packaged:

packagingOptions {

  exclude 'META-INF/services/javax.annotation.processing.Processor' 
}

Use @Mappable annotation on your class definitions and @Mapped on the fields that you want map to the destination object. See that you destination object type is defined by the 'with' configuration on @Mappable annotation.

IMPORTANT, You don't need configure nothing on your destination classes because the library made this job to you.

@Mappable( with = Home.class ) class HomeModel {

@Mapped
  public String Address;

 // If your objects does not contains the same names into their fields,
  // you can configure the destiny name using the 'toField' parameter.
  @Mapped ( toField = "PostalCode")
  public String CityCode;
  ...  
}
class Home {

public String Address;

 public String PostalCode;
  ...  
}

And now you will can make your object conversion.

public class MainActivity extends Activity {

 private void MyMethod(HomeModel model) {

//Build your Class transformer.

Transformer homeModelTransformer = new Transformer

  .Builder()

.build(HomeModel.class);

 ...

//Converting your Model objects to your Domain objects.

Home home = (Home)homeModelTransformer.transform(model);

//If you don't like castings between your objects, you can use this.

Home home = homeModelTransformer.transform(model, Home.class);

...

//Converting your Domain objects to your Model objects.

HomeModel homeModel = (HomeModel)homeModelTransformer.transform(home);

//If you don't like castings between your objects, you can use this.

HomeModel homeModel = homeModelTransformer.transform(home, HomeModel.class);

...
  
}
 
}

Using Custom Parsers

Imagine that you need make complex conversions between your objects, for example, you have a entity on your model with a field of String type, and on the other hand you have a Calendar type field on your Domain objects. Now, you can configure your customs data parsers and personalize this conversions.

First, create your custom data parsers, IMPORTANT, you need the in-out data parsers, I mean, if you want convert a String to a Calendar, you need a parser to convert Calendar to String.

public class CalendarToStringParser extends AbstractParser<Calendar, String> {

 @Override
  protected String onParse(Calendar value) {

SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd");

return dateFormatter.format(value.getTime());

  
}
 
}
public class StringToCalendarParser extends AbstractParser<String, Calendar> {

  @Override
  protected Calendar onParse(String value) {

Calendar calendar = GregorianCalendar.getInstance();

 try {

 SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd");

 calendar.setTime(dateFormatter.parse(value));

}
 catch (ParseException e) {
 
}

 return calendar;
  
}
 
}

Now, you need configure this parsers into your fields.

@Mappable( with = Home.class ) public class HomeModel {

...

 @Parse(

originToDestinationWith = CalendarToStringParser.class,

destinationToOriginWith = StringToCalendarParser.class
  )
  @Mapped public Calendar Date;

 ...

}

License

Copyright Txus Ballesteros 2015 (@txusballesteros)

This file is part of some open source application.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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.

Contact: Txus Ballesteros [email protected]

Resources

Customized toggle button.

Cicerone is a lightweight library that makes the navigation in an Android app easy.

Custom view to pick up a value from a given range using click button or swiping.

ImageMap is a small android library for displaying multiple image on a view using an adapter, you can then retrieve tap event on defined image.

SpannableBar is a Grid-style spannable bar, that is useful when you need a way to span a bar over columns. The view allows you to set the starting column, the span, the number of columns, and more.

Custom EditText for Android to enter credit card numbers.

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