Example usage for org.apache.commons.collections15 OrderedMap firstKey

List of usage examples for org.apache.commons.collections15 OrderedMap firstKey

Introduction

In this page you can find the example usage for org.apache.commons.collections15 OrderedMap firstKey.

Prototype

public K firstKey();

Source Link

Document

Gets the first key currently in this map.

Usage

From source file:org.isatools.isacreator.io.importisa.StructureToInvestigationMapper.java

private int getLoopCount(OrderedMap<String, List<String>> assayStructure) {
    return assayStructure.get(assayStructure.firstKey()).size();
}