本文整理汇总了Java中com.google.protobuf.Internal.ProtobufList类的典型用法代码示例。如果您正苦于以下问题:Java ProtobufList类的具体用法?Java ProtobufList怎么用?Java ProtobufList使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ProtobufList类属于com.google.protobuf.Internal包,在下文中一共展示了ProtobufList类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visitList
import com.google.protobuf.Internal.ProtobufList; //导入依赖的package包/类
@Override
public <T> ProtobufList<T> visitList(ProtobufList<T> mine, ProtobufList<T> other) {
if (!mine.equals(other)) {
throw NOT_EQUALS;
}
return mine;
}
示例2: newProtobufList
import com.google.protobuf.Internal.ProtobufList; //导入依赖的package包/类
protected static <E> ProtobufList<E> newProtobufList() {
return new ProtobufArrayList<E>();
}
示例3: emptyProtobufList
import com.google.protobuf.Internal.ProtobufList; //导入依赖的package包/类
protected static <E> ProtobufList<E> emptyProtobufList() {
return ProtobufArrayList.emptyList();
}
示例4: mutableCopy
import com.google.protobuf.Internal.ProtobufList; //导入依赖的package包/类
protected static <E> ProtobufList<E> mutableCopy(ProtobufList<E> list) {
int size = list.size();
return list.mutableCopyWithCapacity(
size == 0 ? AbstractProtobufList.DEFAULT_CAPACITY : size * 2);
}