Suppose you have an enum Direction
enum Direction{
North,South,East West
}
Could I write a method that uses bitwise or's to compare multiple enums
public boolean canGoDirection(Direction dir){
return dir | Direction.North;
}
where I would call the above method as
this.canGoDirection(Direction.South | Direction.North);