package com.google.protobuf.micro; /* * #%L * Matos * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Orange SA * %% * 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. * #L% */ public final class ByteStringMicro { // Fields public static final ByteStringMicro EMPTY = null; // Constructors private ByteStringMicro(byte [] arg1){ } // Methods public boolean equals(java.lang.Object arg1){ return false; } public java.lang.String toString(java.lang.String arg1) throws java.io.UnsupportedEncodingException{ return (java.lang.String) null; } public int hashCode(){ return 0; } public boolean isEmpty(){ return false; } public int size(){ return 0; } public byte [] toByteArray(){ return (byte []) null; } public static ByteStringMicro copyFrom(byte [] arg1, int arg2, int arg3){ return (ByteStringMicro) null; } public static ByteStringMicro copyFrom(byte [] arg1){ return (ByteStringMicro) null; } public static ByteStringMicro copyFrom(java.lang.String arg1, java.lang.String arg2) throws java.io.UnsupportedEncodingException{ return (ByteStringMicro) null; } public void copyTo(byte [] arg1, int arg2){ } public void copyTo(byte [] arg1, int arg2, int arg3, int arg4){ } public byte byteAt(int arg1){ return (byte) 0; } public static ByteStringMicro copyFromUtf8(java.lang.String arg1){ return (ByteStringMicro) null; } public java.lang.String toStringUtf8(){ return (java.lang.String) null; } }