Package jadx.api.security
Enum JadxSecurityFlag
- java.lang.Object
-
- java.lang.Enum<JadxSecurityFlag>
-
- jadx.api.security.JadxSecurityFlag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JadxSecurityFlag>
public enum JadxSecurityFlag extends java.lang.Enum<JadxSecurityFlag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SECURE_XML_PARSERSECURE_ZIP_READERVERIFY_APP_PACKAGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Set<JadxSecurityFlag>all()static java.util.Set<JadxSecurityFlag>none()static JadxSecurityFlagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JadxSecurityFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VERIFY_APP_PACKAGE
public static final JadxSecurityFlag VERIFY_APP_PACKAGE
-
SECURE_XML_PARSER
public static final JadxSecurityFlag SECURE_XML_PARSER
-
SECURE_ZIP_READER
public static final JadxSecurityFlag SECURE_ZIP_READER
-
-
Method Detail
-
values
public static JadxSecurityFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JadxSecurityFlag c : JadxSecurityFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JadxSecurityFlag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
all
public static java.util.Set<JadxSecurityFlag> all()
-
none
public static java.util.Set<JadxSecurityFlag> none()
-
-