Package edu.umd.cs.findbugs.ba
Class ReturnPath
java.lang.Object
edu.umd.cs.findbugs.ba.ReturnPath
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intMethod "returns" by exiting the process.static final intMethod returns either by exiting or throwing an unhandled exception.static final intMethod may return normally.static final intTop value.static final intMethod returns by throwing an unhandled exception. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcopyFrom(ReturnPath other) intgetKind()voidmergeWith(ReturnPath other) booleansameAs(ReturnPath other) voidsetKind(int kind) toString()
-
Field Details
-
TOP
public static final int TOPTop value.- See Also:
-
EXIT
public static final int EXITMethod "returns" by exiting the process.- See Also:
-
UE
public static final int UEMethod returns by throwing an unhandled exception.- See Also:
-
EXIT_UE
public static final int EXIT_UEMethod returns either by exiting or throwing an unhandled exception.- See Also:
-
RETURNS
public static final int RETURNSMethod may return normally.- See Also:
-
-
Constructor Details
-
ReturnPath
public ReturnPath(int kind)
-
-
Method Details