static UberStyle fromInt()

in core-android/src/main/java/com/uber/sdk/android/core/UberStyle.java [58:66]


    static UberStyle fromInt(int enumValue) {
        for (UberStyle style : values()) {
            if (style.getValue() == enumValue) {
                return style;
            }
        }

        return DEFAULT;
    }