AutoParse

General

Category
Free
Tag
APT
License
Apache License, Version 2.0
Registered
Jul 18, 2015
Favorites
3
Link
https://github.com/yongjhih/auto-parse
See also
Gson Path
PrefData
Scopes
Autoprovider
AttributesDispatcher

Additional

Language
Java
Version
1.0.2 (Feb 6, 2015)
Created
Jan 9, 2015
Updated
Oct 15, 2015 (Retired)
Owner
Andrew Chen (yongjhih)
Contributors
Tobias Preuss (johnjohndoe)
Francesco Sardo (frankiesardo)
Wendly
Andrew Chen (yongjhih)
The Gitter Badger (gitter-badger)
York Tsai (ynntk4815)
Johann Chang (mrjohannchang)
7
Activity
Badge
Generate
Download
Source code

AutoParse

Easy to use ParseObject.

before:

ParseObject gameScore = new ParseObject("GameScore");
gameScore.put("score", 1337);
gameScore.put("playerName", "Sean Plott");
gameScore.put("cheatMode", false);
gameScore.saveInBackground();

after:

ParseGameScore gameScore = ParseGameScore.create();
gameScore.setScore(1337);
gameScore.setPlayerName("Sean Plott");
gameScore.setCheatMode(false);
ParseGameScore.saveInBackground();
ParseQuery<AutoParse_ParseGameScore> = ParseQuery.getQuery(AutoParse_ParseGameScore.class);
// ...
ParseGameScore gameScore = (ParseGameScore) query.findFirst();
gameScore.getScore();
gameScore.getPlayerName();
gameScore.getCheatMode();

Usage

@ParseClassName("GameScore")
@AutoParse
public abstract class ParseGameScore extends ParseObject implements Parcelable {

  public abstract ParseGameScore setPlayerName(String playerName); // put("playerName", name);
  public abstract String getPlayerName(); // getString("playerName");

  public abstract Integer getScore();
  public abstract ParseGameScore setScore(Integer score);

  public abstract Boolean getCheatMode();
  public abstract Boolean ParseGameScoresetCheatMode(Boolean cheatMode);

  public static ParseGameScore create() {
    return new AutoParse_ParseGameScore();
  }
}

Installation

via jitpack:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
    }
}

repositories {
    maven { url "https://jitpack.io" }
}

apply plugin: 'android-apt'

dependencies {
    compile 'com.github.yongjhih.auto-parse:auto-parse:-SNAPSHOT'
    apt 'com.github.yongjhih.auto-parse:auto-parse-processor:-SNAPSHOT'
}

via jcenter:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
    }
}

repositories {
    jcenter()
}

apply plugin: 'android-apt'

dependencies {
    compile 'com.infstory:auto-parse:1.0.0'
    apt 'com.infstory:auto-parse-processor:1.0.0'
}

See Also

auto-parse uses compile-time annotation that's faster than runtime annotation reflection.

License

Copyright 2015 8tory, Inc.
Copyright 2014 Frankie Sardo
Copyright 2013 Google, Inc.

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.