Example usage for org.apache.commons.lang ArrayUtils EMPTY_LONG_OBJECT_ARRAY

List of usage examples for org.apache.commons.lang ArrayUtils EMPTY_LONG_OBJECT_ARRAY

Introduction

In this page you can find the example usage for org.apache.commons.lang ArrayUtils EMPTY_LONG_OBJECT_ARRAY.

Prototype

Long[] EMPTY_LONG_OBJECT_ARRAY

To view the source code for org.apache.commons.lang ArrayUtils EMPTY_LONG_OBJECT_ARRAY.

Click Source Link

Document

An empty immutable Long array.

Usage

From source file:gov.nih.nci.caarray.application.arraydata.DataImportOptions.java

/**
 * @param newAnnotationName the name to be used by all auto-created annotations
 * @return a new instance of data import options where the annotation option
 * is to autocreate a single chain shared by all files
 *//*from w w  w  .ja v  a 2s .  co m*/
public static DataImportOptions getAutoCreateSingleOptions(String newAnnotationName) {
    return new DataImportOptions(DataImportTargetAnnotationOption.AUTOCREATE_SINGLE, newAnnotationName, null,
            Arrays.asList(ArrayUtils.EMPTY_LONG_OBJECT_ARRAY));
}