Lines Matching defs:Case
47 public static class Case {
50 public Case(Throwable t,EnumSet<WHERE> where) {
55 // Various methods to create an instance of Case in a single line
58 public static Case caze(Throwable t, WHERE w) {
59 return new Case(t,EnumSet.of(w));
61 public static Case caze(Throwable t, EnumSet<WHERE> where) {
62 return new Case(t,where);
64 public static Case caze(Throwable t, WHERE w, WHERE... rest) {
65 return new Case(t,EnumSet.of(w,rest));
71 public static Case[] cases ={
100 for (Case caze:cases) {