mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
29 lines
793 B
Java
29 lines
793 B
Java
package com.alibaba.fastjson.annotation;
|
|
|
|
import com.alibaba.fastjson.parser.Feature;
|
|
import com.alibaba.fastjson.serializer.SerializerFeature;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
/* loaded from: classes2.dex */
|
|
public @interface JSONField {
|
|
String[] alternateNames() default {};
|
|
|
|
boolean deserialize() default true;
|
|
|
|
String format() default "";
|
|
|
|
String name() default "";
|
|
|
|
int ordinal() default 0;
|
|
|
|
Feature[] parseFeatures() default {};
|
|
|
|
boolean serialize() default true;
|
|
|
|
SerializerFeature[] serialzeFeatures() default {};
|
|
}
|