Rabbit-R1/switch port/java/sources/com/alibaba/fastjson/parser/Feature.java
2024-05-21 17:08:36 -04:00

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() {
}
}