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

jnr.constants.platform.Shutdown Maven / Gradle / Ivy

There is a newer version: 0.10.4
Show newest version
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated 2010-07-31 18:57:14 +1000
package jnr.constants.platform;
public enum Shutdown implements jnr.constants.Constant {
SHUT_RD,
SHUT_WR,
SHUT_RDWR,
__UNKNOWN_CONSTANT__;
private static final ConstantResolver resolver = 
ConstantResolver.getBitmaskResolver(Shutdown.class);
public final int intValue() { return (int) resolver.longValue(this); }
public final long longValue() { return resolver.longValue(this); }
public final String description() { return resolver.description(this); }
public final boolean defined() { return resolver.defined(this); }
public final String toString() { return description(); }
public static Shutdown valueOf(long value) { 
    return resolver.valueOf(value);
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy