在静态方法fromInt中,我们使用switch语句根据输入的数字返回对应的Enum常量。我们将输入的数字与每个Enum常量的序号进行比较,如果相等则返回该Enum常量。 publicenumColor{RED,GREEN,BLUE;publicstaticColorfromInt(intvalue){switch(value){case0:returnRED;case1:returnGREEN;case2:returnBLUE;default:thrownewIllegalArgum...