Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NullableOptional (0.61 sec)

  1. android/guava/src/com/google/common/base/Optional.java

       * java.util.Optional}, or {@code null} if the argument is null.
       *
       * @since 33.4.0 (but since 21.0 in the JRE flavor)
       */
      @SuppressWarnings("NullableOptional") // Null passthrough is reasonable for type conversions
      @IgnoreJRERequirement // Users will use this only if they're already using Optional.
      public static <T> @Nullable Optional<T> fromJavaUtil(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Jun 04 13:03:16 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/MediaType.java

      @LazyInit private @Nullable String toString;
    
      @LazyInit private int hashCode;
    
      // We need to differentiate between "not computed" and "computed to be absent."
      @SuppressWarnings("NullableOptional")
      @LazyInit
      private @Nullable Optional<Charset> parsedCharset;
    
      private MediaType(String type, String subtype, ImmutableListMultimap<String, String> parameters) {
        this.type = type;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 02 01:46:40 UTC 2025
    - 48K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/MediaType.java

      @LazyInit private @Nullable String toString;
    
      @LazyInit private int hashCode;
    
      // We need to differentiate between "not computed" and "computed to be absent."
      @SuppressWarnings("NullableOptional")
      @LazyInit
      private @Nullable Optional<Charset> parsedCharset;
    
      private MediaType(String type, String subtype, ImmutableListMultimap<String, String> parameters) {
        this.type = type;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 02 01:46:40 UTC 2025
    - 48K bytes
    - Viewed (0)
Back to top