Java Array Normalize normaliseHeaders(String[] headers)

Here you can find the source of normaliseHeaders(String[] headers)

Description

normalise Headers

License

Open Source License

Declaration

public static void normaliseHeaders(String[] headers) 

Method Source Code

//package com.java2s;
/**//  www  .j a  v a2s .c o  m
 * Copyright (C) 2011 - present by OpenGamma Inc. and the OpenGamma group of companies
 * 
 * Please see distribution for license.
 */

public class Main {
    public static void normaliseHeaders(String[] headers) {
        for (int i = 0; i < headers.length; i++) {
            headers[i] = headers[i].toLowerCase();
        }
    }
}

Related

  1. normalise(double[] a)
  2. normalise(double[] A)
  3. normalise(float[] array)
  4. normaliseActions(double[] actions)
  5. normaliseFloats(final float[] table, final int position, final int length)
  6. normaliseSum(double[] a)
  7. normaliseUnicode(String unicodeText, char[] mappings)
  8. normalize(byte[] data, byte maximum, byte minimum)
  9. normalize(double arr[])