Java ByteBuffer Get getAttrs(Map fields)

Here you can find the source of getAttrs(Map fields)

Description

get Attrs

License

Apache License

Declaration

private static Map<String, byte[]> getAttrs(Map<CharSequence, ByteBuffer> fields) 

Method Source Code

//package com.java2s;
/**/*w w w .j av a2 s  .  c om*/
 * Licensed to Cloudera, Inc. under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  Cloudera, Inc. licenses this file
 * to you 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.
 */

import java.nio.ByteBuffer;

import java.util.HashMap;
import java.util.Map;

public class Main {
    private static Map<String, byte[]> getAttrs(Map<CharSequence, ByteBuffer> fields) {
        if (fields == null) {
            return new HashMap<String, byte[]>();
        }
        HashMap<String, byte[]> tempMap = new HashMap<String, byte[]>();
        for (CharSequence u : fields.keySet()) {
            tempMap.put(u.toString(), fields.get(u).array());
        }
        return tempMap;
    }
}

Related

  1. getAsByteBuffer()
  2. getAsBytes(List buffers)
  3. getAscii(ByteBuffer bytes)
  4. getAsciiString(ByteBuffer buffer)
  5. getAsIntArray(ByteBuffer yuv, int size)
  6. getBatch(ByteBuffer bb)
  7. getBigDecimalFromByteBuffer( ByteBuffer bytebuf, int start, int length, int scale)
  8. getBit(ByteBuffer in, int pos)
  9. getBitString(java.nio.ByteBuffer buffer, int lenBits)