21 lines
546 B
Java
21 lines
546 B
Java
package be.seeseepuff.pcinv.meta;
|
|
|
|
import lombok.Builder;
|
|
import lombok.Getter;
|
|
|
|
/**
|
|
* Represents an option for an asset property enum.
|
|
*/
|
|
@Getter
|
|
@Builder
|
|
public class AssetOption {
|
|
/// The internal value of the option.
|
|
private final String value;
|
|
/// The display name of the option.
|
|
private final String displayName;
|
|
/// The actual enum value associated with this option.
|
|
private final Object enumConstant;
|
|
/// Whether this option is the default value for the property.
|
|
private final boolean isDefaultValue;
|
|
}
|