mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
28 lines
590 B
Java
28 lines
590 B
Java
package com.alibaba.fastjson.parser;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum Feature {
|
|
AutoCloseSource,
|
|
AllowComment,
|
|
AllowUnQuotedFieldNames,
|
|
AllowSingleQuotes,
|
|
InternFieldNames,
|
|
AllowISO8601DateFormat,
|
|
AllowArbitraryCommas,
|
|
UseBigDecimal,
|
|
IgnoreNotMatch,
|
|
SortFeidFastMatch,
|
|
DisableASM,
|
|
DisableCircularReferenceDetect,
|
|
InitStringFieldAsEmpty,
|
|
SupportArrayToBean,
|
|
OrderedField,
|
|
DisableSpecialKeyDetect,
|
|
SupportNonPublicField,
|
|
SupportAutoType;
|
|
|
|
public final int mask = 1 << ordinal();
|
|
|
|
Feature() {
|
|
}
|
|
}
|