Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isCheckboxEnabled (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

                buf.append(current.getLocalizedMessage()).append(' ');
                current = current.getCause();
            }
            return buf.toString();
        }
    
        public static boolean isCheckboxEnabled(final String value) {
            if (value == null) {
                return false;
            }
            return Constants.ON.equalsIgnoreCase(value) || Constants.TRUE.equalsIgnoreCase(value);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top