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

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

Introduction

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

Prototype

boolean IS_OS_IRIX

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

Click Source Link

Document

Is true if this is Irix.

The field will return false if OS_NAME is null.

Usage

From source file:util.PosixComplianceUtil.java

private boolean isFullyPosixCompliant() {
    return SystemUtils.IS_OS_AIX || SystemUtils.IS_OS_HP_UX || SystemUtils.IS_OS_IRIX
            || SystemUtils.IS_OS_MAC_OSX || SystemUtils.IS_OS_SOLARIS;
}