Tabnine Logo
Tables$UnmodifiableTable.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.google.common.collect.Tables$UnmodifiableTable
constructor

Best Java code snippets using com.google.common.collect.Tables$UnmodifiableTable.<init> (Showing top 14 results out of 315)

origin: com.ning.billing/killbill-osgi-bundles-analytics

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: at.bestsolution.efxclipse.eclipse/com.google.guava

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: org.sonatype.sisu/sisu-guava

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: com.ning.billing/killbill-osgi-bundles-jruby

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: com.diffplug.guava/guava-collect

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 *
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 *
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
    Table<? extends R, ? extends C, ? extends V> table) {
  return new UnmodifiableTable<R, C, V>(table);
}
origin: com.google.guava/guava-jdk5

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: Nextdoor/bender

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: org.hudsonci.lib.guava/guava

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table
 * "read through" to the specified table, and attempts to modify the returned table, whether
 * direct or via its collection views, result in an {@code UnsupportedOperationException}.
 * 
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 * 
 * @param table
 *          the table for which an unmodifiable view is to be returned
 * @return an unmodifiable view of the specified table
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<R, C, V>(table);
}

origin: org.jboss.eap/wildfly-client-all

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table "read
 * through" to the specified table, and attempts to modify the returned table, whether direct or
 * via its collection views, result in an {@code UnsupportedOperationException}.
 *
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 *
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<>(table);
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table "read
 * through" to the specified table, and attempts to modify the returned table, whether direct or
 * via its collection views, result in an {@code UnsupportedOperationException}.
 *
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 *
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<>(table);
}
origin: wildfly/wildfly

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table "read
 * through" to the specified table, and attempts to modify the returned table, whether direct or
 * via its collection views, result in an {@code UnsupportedOperationException}.
 *
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 *
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<>(table);
}
origin: google/j2objc

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table "read
 * through" to the specified table, and attempts to modify the returned table, whether direct or
 * via its collection views, result in an {@code UnsupportedOperationException}.
 *
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 *
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<>(table);
}
origin: google/guava

/**
 * Returns an unmodifiable view of the specified table. This method allows modules to provide
 * users with "read-only" access to internal tables. Query operations on the returned table "read
 * through" to the specified table, and attempts to modify the returned table, whether direct or
 * via its collection views, result in an {@code UnsupportedOperationException}.
 *
 * <p>The returned table will be serializable if the specified table is serializable.
 *
 * <p>Consider using an {@link ImmutableTable}, which is guaranteed never to change.
 *
 * @since 11.0
 */
public static <R, C, V> Table<R, C, V> unmodifiableTable(
  Table<? extends R, ? extends C, ? extends V> table) {
 return new UnmodifiableTable<>(table);
}
com.google.common.collectTables$UnmodifiableTable<init>

Popular methods of Tables$UnmodifiableTable

  • delegate

Popular in Java

  • Parsing JSON documents to java classes using gson
  • compareTo (BigDecimal)
  • setScale (BigDecimal)
  • getContentResolver (Context)
  • Menu (java.awt)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • Collectors (java.util.stream)
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • ImageIO (javax.imageio)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now