Uses of Class
com.h3xstream.findsecbugs.taintanalysis.Taint.Tag
-
Packages that use Taint.Tag Package Description com.h3xstream.findsecbugs.taintanalysis -
-
Uses of Taint.Tag in com.h3xstream.findsecbugs.taintanalysis
Methods in com.h3xstream.findsecbugs.taintanalysis that return Taint.Tag Modifier and Type Method Description static Taint.TagTaint.Tag. valueOf(String name)Returns the enum constant of this type with the specified name.static Taint.Tag[]Taint.Tag. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.h3xstream.findsecbugs.taintanalysis that return types with arguments of type Taint.Tag Modifier and Type Method Description Set<Taint.Tag>Taint. getTags()Returns all present taint tags for this factSet<Taint.Tag>Taint. getTagsToRemove()Returns tags to remove (if this fact acts like a taint derivation spec.)Methods in com.h3xstream.findsecbugs.taintanalysis with parameters of type Taint.Tag Modifier and Type Method Description booleanTaint. addTag(Taint.Tag tag)Adds the specified taint tag to this fact or marks this tag to add if this fact acts like a derivation of taint transfer behaviourbooleanTaint. hasOneTag(Taint.Tag... tags)Checks whether one of the specified taint tag is present for this factbooleanTaint. hasTag(Taint.Tag tag)Checks whether the specified taint tag is present for this factbooleanTaint. removeTag(Taint.Tag tag)Removes the specified tag (if present) or marks this tag to remove if this fact acts like a derivation of taint transfer behaviour
-