HandStatus.java

package com.example;

public enum HandStatus {
  UNKNOWN,
  WON,
  LOST,
  PUSH
}