Package com.mchange.util
Interface IntChecklist
-
- All Known Implementing Classes:
HashIntChecklist,LinkedListIntChecklistImpl
public interface IntChecklist
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcheck(int num)IntEnumerationchecked()voidclear()intcountChecked()int[]getChecked()booleanisChecked(int num)voiduncheck(int num)
-
-
-
Method Detail
-
check
void check(int num)
-
uncheck
void uncheck(int num)
-
isChecked
boolean isChecked(int num)
-
clear
void clear()
-
countChecked
int countChecked()
-
getChecked
int[] getChecked()
-
checked
IntEnumeration checked()
-
-