- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<Constant>
-
- jnr.constants.ConstantSet
-
public class ConstantSet extends AbstractSet<Constant>
Provides forward and reverse lookup for platform constants
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontains(Object o)ConstantgetConstant(long value)Gets the constant for a value.ConstantgetConstant(String name)Gets the constant for a name.static ConstantSetgetConstantSet(String name)Gets aConstantSetStringgetName(int value)Gets the name of a platform constant value.longgetValue(String name)Gets the integer value of a platform constant.Iterator<Constant>iterator()static voidmain(String[] args)longmaxValue()Returns the maximum value in this ConstantSetlongminValue()Returns the minimum value in this ConstantSetintsize()-
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.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Method Detail
-
getConstantSet
public static ConstantSet getConstantSet(String name)
Gets aConstantSet- Parameters:
name- The name of the constant set to get.- Returns:
- A
ConstantSet.
-
getConstant
public final Constant getConstant(String name)
Gets the constant for a name.- Parameters:
name- The name of the system constant (e.g. "EINVAL").- Returns:
- A
Constantinstance.
-
getConstant
public Constant getConstant(long value)
Gets the constant for a value.- Parameters:
value- A system constant value.- Returns:
- A
Constantinstance.
-
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()
Returns the minimum value in this ConstantSet- Returns:
- a long value
-
maxValue
public long maxValue()
Returns the maximum value in this ConstantSet- Returns:
- a long value
-
size
public int size()
- Specified by:
sizein interfaceCollection<Constant>- Specified by:
sizein interfaceSet<Constant>- Specified by:
sizein classAbstractCollection<Constant>
-
contains
public boolean contains(Object o)
- Specified by:
containsin interfaceCollection<Constant>- Specified by:
containsin interfaceSet<Constant>- Overrides:
containsin classAbstractCollection<Constant>
-
main
public static void main(String[] args)
-
-