com.greenfrvr.annyprefs.annotation.ObjectPref Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annyprefs-annotations Show documentation
Show all versions of annyprefs-annotations Show documentation
Android annotation based SharedPreferences wrapper with fluent interface.
The newest version!
package com.greenfrvr.annyprefs.annotation;
import android.support.annotation.StringRes;
/**
* Created by greenfrvr
*/
public @interface ObjectPref {
@StringRes int keyRes() default -1;
String key() default "";
Class> type();
}