List of usage examples for org.apache.poi.hpsf CustomProperties keySet
@Override @SuppressWarnings({ "rawtypes", "unchecked" }) public Set keySet()
From source file:edu.ku.brc.specify.tasks.subpane.wb.ConfigureXLS.java
License:Open Source License
/** * @param props/*www . j a v a2 s .c o m*/ * @return */ protected boolean usesViewOrderKey(CustomProperties props) { if (props != null && props.keySet().size() > 0) { String key = props.keySet().iterator().next().toString(); return key.startsWith(POIFS_COL_KEY_PREFIX); } else { return false; } }