/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.nio; public abstract class DoubleBuffer extends java.nio.Buffer implements java.lang.Comparable { DoubleBuffer() { throw new RuntimeException("Stub!"); } public static java.nio.DoubleBuffer allocate(int capacity) { throw new RuntimeException("Stub!"); } public static java.nio.DoubleBuffer wrap(double[] array) { throw new RuntimeException("Stub!"); } public static java.nio.DoubleBuffer wrap(double[] array, int start, int doubleCount) { throw new RuntimeException("Stub!"); } public final double[] array() { throw new RuntimeException("Stub!"); } public final int arrayOffset() { throw new RuntimeException("Stub!"); } public abstract java.nio.DoubleBuffer asReadOnlyBuffer(); public abstract java.nio.DoubleBuffer compact(); public int compareTo(java.nio.DoubleBuffer otherBuffer) { throw new RuntimeException("Stub!"); } public abstract java.nio.DoubleBuffer duplicate(); public boolean equals(java.lang.Object other) { throw new RuntimeException("Stub!"); } public abstract double get(); public java.nio.DoubleBuffer get(double[] dst) { throw new RuntimeException("Stub!"); } public java.nio.DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { throw new RuntimeException("Stub!"); } public abstract double get(int index); public final boolean hasArray() { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public abstract boolean isDirect(); public abstract java.nio.ByteOrder order(); public abstract java.nio.DoubleBuffer put(double d); public final java.nio.DoubleBuffer put(double[] src) { throw new RuntimeException("Stub!"); } public java.nio.DoubleBuffer put(double[] src, int srcOffset, int doubleCount) { throw new RuntimeException("Stub!"); } public java.nio.DoubleBuffer put(java.nio.DoubleBuffer src) { throw new RuntimeException("Stub!"); } public abstract java.nio.DoubleBuffer put(int index, double d); public abstract java.nio.DoubleBuffer slice(); }