All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jnr.constants.platform.solaris.Locale Maven / Gradle / Ivy

There is a newer version: 0.10.4
Show newest version
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated 2017-01-25 14:08:36 -0500
package jnr.constants.platform.solaris;
public enum Locale implements jnr.constants.Constant {
    LC_CTYPE(0L),
    LC_NUMERIC(1L),
    LC_TIME(2L),
    LC_COLLATE(3L),
    LC_MONETARY(4L),
    LC_MESSAGES(5L),
    LC_ALL(6L);
    // LC_PAPER not defined
// LC_NAME not defined
// LC_ADDRESS not defined
// LC_TELEPHONE not defined
// LC_MEASUREMENT not defined
// LC_IDENTIFICATION not defined
    private final long value;
    private Locale(long value) { this.value = value; }
    public static final long MIN_VALUE = 0L;
    public static final long MAX_VALUE = 6L;

    public final int intValue() { return (int) value; }
    public final long longValue() { return value; }
    public final boolean defined() { return true; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy