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