MCPcopy Create free account
hub / github.com/apache/calcite / empty

Method empty

core/src/main/java/org/apache/calcite/util/Holder.java:65–68  ·  view source on GitHub ↗

Creates a holder containing null.

()

Source from the content-addressed store, hash-verified

63
64 /** Creates a holder containing null. */
65 @SuppressWarnings("ConstantConditions")
66 public static <E> Holder<@Nullable E> empty() {
67 return new Holder<@Nullable E>(null);
68 }
69}

Calls

no outgoing calls