public static enum InfoflowConfiguration.ImplicitFlowMode extends Enum<InfoflowConfiguration.ImplicitFlowMode>
| 枚举常量和说明 |
|---|
AllImplicitFlows
Follow all control flow dependencies that involve tainted data
|
ArrayAccesses
Create a new taint when a non-tainted array is accessed using a tainted
index, but do not flow other control-flow dependencies
|
NoImplicitFlows
Implicit flows will not be tracked at all
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
trackArrayAccesses()
Gets whether the current mode tracks array accesses on tainted indices
|
boolean |
trackControlFlowDependencies()
Gets whether the current mode tracks control flow dependencies
|
static InfoflowConfiguration.ImplicitFlowMode |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static InfoflowConfiguration.ImplicitFlowMode[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final InfoflowConfiguration.ImplicitFlowMode NoImplicitFlows
public static final InfoflowConfiguration.ImplicitFlowMode ArrayAccesses
public static final InfoflowConfiguration.ImplicitFlowMode AllImplicitFlows
public static InfoflowConfiguration.ImplicitFlowMode[] values()
for (InfoflowConfiguration.ImplicitFlowMode c : InfoflowConfiguration.ImplicitFlowMode.values()) System.out.println(c);
public static InfoflowConfiguration.ImplicitFlowMode valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public boolean trackArrayAccesses()
public boolean trackControlFlowDependencies()
Copyright © 2022 Fraunhofer SIT. All rights reserved.