Rabbit-R1/switch port/java/sources/com/alibaba/fastjson/parser/Feature.java

29 lines
590 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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() {
}
}