jnr.constants
Class ConstantSet

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractSet<Constant>
          extended by jnr.constants.ConstantSet
All Implemented Interfaces:
Iterable<Constant>, Collection<Constant>, Set<Constant>

public class ConstantSet
extends AbstractSet<Constant>

Provides forward and reverse lookup for platform constants


Method Summary
 boolean contains(Object o)
           
 Constant getConstant(long value)
          Gets the constant for a name.
 Constant getConstant(String name)
          Gets the constant for a name.
static ConstantSet getConstantSet(String name)
          Gets a ConstantSet
 String getName(int value)
          Gets the name of a platform constant value.
 long getValue(String name)
          Gets the integer value of a platform constant.
 Iterator<Constant> iterator()
           
 long maxValue()
           
 long minValue()
           
 int size()
           
 
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
 
Methods inherited from class java.util.AbstractCollection
add, addAll, clear, containsAll, isEmpty, remove, retainAll, toArray, toArray, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Set
add, addAll, clear, containsAll, isEmpty, remove, retainAll, toArray, toArray
 

Method Detail

getConstantSet

public static ConstantSet getConstantSet(String name)
Gets a ConstantSet

Parameters:
name - The name of the constant set to get.
Returns:
A ConstantSet.

getConstant

public Constant getConstant(String name)
Gets the constant for a name.

Parameters:
name - The name of the system constant (e.g. "EINVAL").
Returns:
A Constant instance.

getConstant

public Constant getConstant(long value)
Gets the constant for a name.

Parameters:
value - A system constant value.
Returns:
A Constant instance.

getValue

public long getValue(String name)
Gets the integer value of a platform constant.

Parameters:
name - The name of the platform constant to look up (e.g. "EINVAL").
Returns:
The integer value of the constant.

getName

public String getName(int value)
Gets the name of a platform constant value.

Parameters:
value - The integer value to look up.
Returns:
The name of the constant.

minValue

public long minValue()

maxValue

public long maxValue()

iterator

public Iterator<Constant> iterator()
Specified by:
iterator in interface Iterable<Constant>
Specified by:
iterator in interface Collection<Constant>
Specified by:
iterator in interface Set<Constant>
Specified by:
iterator in class AbstractCollection<Constant>

size

public int size()
Specified by:
size in interface Collection<Constant>
Specified by:
size in interface Set<Constant>
Specified by:
size in class AbstractCollection<Constant>

contains

public boolean contains(Object o)
Specified by:
contains in interface Collection<Constant>
Specified by:
contains in interface Set<Constant>
Overrides:
contains in class AbstractCollection<Constant>


Copyright © 2012. All Rights Reserved.