JSP ページがあり、Struts を使用して select タグを作成しています。JSP コードは次のとおりです。
<s:select
required="true"
name="form.tipologia"
label="%{getText('Enum.label')}"
list="@it........Enum@values()"
listKey="name()"
listValue="getText('Enum.' + name())"
headerKey=""
headerValue="%{getText('Enum.')}"
/>
このコードは、Enum 定数を含む選択フィールドを生成します。私がやりたいことは、列挙型のサブセットのみでフィールドを作成することです。どうすればいいですか?出来ますか?