com.virjar.sekiro.api.databind.AutoBind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sekiro-api Show documentation
Show all versions of sekiro-api Show documentation
ratel api,used for developer on ratel system,an extension for xposed framewrok,ratel api compatable with original xposed framework
package com.virjar.sekiro.api.databind;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by virjar on 2019/1/24.
* auto bind/transform to a give actionRequestHandler instance
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
@Documented
public @interface AutoBind {
String value() default "";
boolean require() default false;
String defaultStringValue() default "";
int defaultIntValue() default 0;
boolean defaultBooleanValue() default false;
long defaultLongValue() default 0L;
double defaultDoubleValue() default 0D;
}