本文整理汇总了Java中com.google.common.collect.Tables.unmodifiableTable方法的典型用法代码示例。如果您正苦于以下问题:Java Tables.unmodifiableTable方法的具体用法?Java Tables.unmodifiableTable怎么用?Java Tables.unmodifiableTable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.common.collect.Tables
的用法示例。
在下文中一共展示了Tables.unmodifiableTable方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getAll
import com.google.common.collect.Tables; //导入方法依赖的package包/类
@Nonnull
@Override
public Table<HOLDER, Class<Object>, Object> getAll() {
return Tables.unmodifiableTable(metadata);
}
示例2: apply
import com.google.common.collect.Tables; //导入方法依赖的package包/类
@Override
public Table<R, C, V> apply(Table<? extends R, ? extends C, ? extends V> input) {
return input == null ? null : Tables.unmodifiableTable(input);
}
示例3: load
import com.google.common.collect.Tables; //导入方法依赖的package包/类
@Override
public Table<Integer, String, String> load(InlineTable inlineTable){
return Tables.unmodifiableTable(parse(inlineTable));
}
示例4: getInclusionRules
import com.google.common.collect.Tables; //导入方法依赖的package包/类
/**
* Returns an unmodifiable view of the table of inclusion rules: rows are
* metamodel URIs, columns are type names or WILDCARD (meaning all types in
* the metamodel) and cells are either sets of slot names or a singleton set
* with WILDCARD (meaning "all"). An empty table means "include everything".
*/
public Table<String, String, ImmutableSet<String>> getInclusionRules() {
return Tables.unmodifiableTable(inclusions);
}
示例5: getExclusionRules
import com.google.common.collect.Tables; //导入方法依赖的package包/类
/**
* Returns an unmodifiable view of the table of exclusion rules: rows are
* metamodel URIs, columns are type names and cells are either sets of slot
* names or a singleton set with WILDCARD (meaning "all"). An empty table
* means "exclude nothing".
*/
public Table<String, String, ImmutableSet<String>> getExclusionRules() {
return Tables.unmodifiableTable(exclusions);
}