ProjectTypEnum是一個列舉類,存在多個列舉屬性
本操作是用TypeId判斷出typeValue的值
Optional<String> first =
Arrays.stream(ProjectTypEnum.values()).filter(e -> e.getKey().equals(project.getTypeId())).map(ProjectTypEnum::getValue).findFirst();
ProjectTypEnum是一個列舉類,存在多個列舉屬性
本操作是用TypeId判斷出typeValue的值
Optional<String> first =
Arrays.stream(ProjectTypEnum.values()).filter(e -> e.getKey().equals(project.getTypeId())).map(ProjectTypEnum::getValue).findFirst();