congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Tables$UnmodifiableTable
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using com.google.common.collect.Tables$UnmodifiableTable (Showing top 20 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: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
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: 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: 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.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-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.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: org.kill-bill.billing/killbill-osgi-bundles-jruby

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
origin: org.hudsonci.lib.guava/guava

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
origin: org.sonatype.sisu/sisu-guava

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
origin: com.google.guava/guava-jdk5

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
origin: at.bestsolution.efxclipse.eclipse/com.google.guava

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
origin: com.ning.billing/killbill-osgi-bundles-analytics

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
origin: org.jboss.eap/wildfly-client-all

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
origin: Nextdoor/bender

@Override
protected RowSortedTable<R, C, V> delegate() {
 return (RowSortedTable<R, C, V>) super.delegate();
}
com.google.common.collectTables$UnmodifiableTable

Most used methods

  • <init>
  • delegate

Popular in Java

  • Updating database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • JPanel (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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