• JackbyDev@programming.devM
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    Example code from the link for the lazy,

    // As of Java 21
    static String formatterPatternSwitch(Object obj) {
        return switch (obj) {
            case Integer i -> String.format("int %d", i);
            case Long l    -> String.format("long %d", l);
            case Double d  -> String.format("double %f", d);
            case String s  -> String.format("String %s", s);
            default        -> obj.toString();
        };
    }