public static enum InfoflowConfiguration.PathReconstructionMode extends Enum<InfoflowConfiguration.PathReconstructionMode>
| 枚举常量和说明 |
|---|
Fast
Reconstruct the path between source and sink, but allow for simplifications
to improve performance
|
NoPaths
Do not reconstruct paths, only associate sources and sinks
|
Precise
Reconstruct the precise path between source and sink, do not simplify
anything.
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
reconstructPaths()
Gets whether this configuration reconstructs the data flow paths between
source and sink
|
static InfoflowConfiguration.PathReconstructionMode |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static InfoflowConfiguration.PathReconstructionMode[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final InfoflowConfiguration.PathReconstructionMode NoPaths
public static final InfoflowConfiguration.PathReconstructionMode Fast
public static final InfoflowConfiguration.PathReconstructionMode Precise
public static InfoflowConfiguration.PathReconstructionMode[] values()
for (InfoflowConfiguration.PathReconstructionMode c : InfoflowConfiguration.PathReconstructionMode.values()) System.out.println(c);
public static InfoflowConfiguration.PathReconstructionMode valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public boolean reconstructPaths()
Copyright © 2022 Fraunhofer SIT. All rights reserved.