public void showDataFlowWithNumericExample()

in java-samples/src/main/java/com/jetbrains/analysis/DataFlowAnalysis.java [52:64]


    public void showDataFlowWithNumericExample(int intValue) {
        if (intValue > 100) {
            return;
        } else if (intValue == 53) {
            System.out.println("This is a special value");
        } else if (intValue == 13) {
            throw new IllegalArgumentException("Invalid value");
        } else if (intValue < -10) {
            throw new IllegalArgumentException("Number too low");
        }

        System.out.println(intValue);
    }