Class ImmutableTable.SerializedForm

java.lang.Object
com.google.common.collect.ImmutableTable.SerializedForm
All Implemented Interfaces:
Serializable
Enclosing class:
ImmutableTable<R,C,V>

static final class ImmutableTable.SerializedForm extends Object implements Serializable
Serialized type for all ImmutableTable instances. It captures the logical contents and preserves iteration order of all views.
  • Field Details

    • rowKeys

      private final Object[] rowKeys
    • columnKeys

      private final Object[] columnKeys
    • cellValues

      private final Object[] cellValues
    • cellRowIndices

      private final int[] cellRowIndices
    • cellColumnIndices

      private final int[] cellColumnIndices
    • serialVersionUID

      private static final long serialVersionUID
      See Also:
  • Constructor Details

    • SerializedForm

      private SerializedForm(Object[] rowKeys, Object[] columnKeys, Object[] cellValues, int[] cellRowIndices, int[] cellColumnIndices)
  • Method Details