Example usage for org.apache.commons.lang SystemUtils OS_ARCH

List of usage examples for org.apache.commons.lang SystemUtils OS_ARCH

Introduction

In this page you can find the example usage for org.apache.commons.lang SystemUtils OS_ARCH.

Prototype

String OS_ARCH

To view the source code for org.apache.commons.lang SystemUtils OS_ARCH.

Click Source Link

Document

The os.arch System Property.

Usage

From source file:org.codehaus.preon.buffer.ByteOrderTest.java

@Test
public void shouldReturnProperByteOrder() {
    if ("x86_64".equals(SystemUtils.OS_ARCH)) {
        assertThat(ByteOrder.Native, is(ByteOrder.LittleEndian));
    }/*  w  ww. j  a va 2s  . c  o  m*/
}