Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getDoubleValue (0.12 seconds)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java

        /**
         * Method getDoubleValue.
         *
         * @param s a s object.
         * @param strict a strict object.
         * @param parser a parser object.
         * @param attribute a attribute object.
         * @throws XmlPullParserException XmlPullParserException if
         * any.
         * @return double
         */
        private double getDoubleValue(String s, String attribute, XmlPullParser parser, boolean strict)
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 25.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

            return switch (token) {
            case VALUE_STRING -> jsonParser.getText();
            case VALUE_NUMBER_INT -> jsonParser.getLongValue();
            case VALUE_NUMBER_FLOAT -> jsonParser.getDoubleValue();
            case VALUE_TRUE -> true;
            case VALUE_FALSE -> false;
            case VALUE_NULL -> null;
            default -> null; // Or throw an exception if unexpected token
            };
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Dec 14 01:18:25 GMT 2025
    - 16.5K bytes
    - Click Count (0)
Back to Top