return type.getClass() == SetType.class;
}
public String convert(final ThriftType type, final boolean ignored)
{
final SetType setType = SetType.class.cast(type);
final String actualType = TypeToJavaConverter.this.convert(setType.getType(), false);
return "Set<" + actualType + ">";
}