Package org.mapstruct.ap.internal.gem
Enum CollectionMappingStrategyGem
- java.lang.Object
-
- java.lang.Enum<CollectionMappingStrategyGem>
-
- org.mapstruct.ap.internal.gem.CollectionMappingStrategyGem
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CollectionMappingStrategyGem>
public enum CollectionMappingStrategyGem extends java.lang.Enum<CollectionMappingStrategyGem>
Gem for the enumCollectionMappingStrategy
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESSOR_ONLYADDER_PREFERREDSETTER_PREFERREDTARGET_IMMUTABLE
-
Constructor Summary
Constructors Modifier Constructor Description privateCollectionMappingStrategyGem()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CollectionMappingStrategyGemvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CollectionMappingStrategyGem[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESSOR_ONLY
public static final CollectionMappingStrategyGem ACCESSOR_ONLY
-
SETTER_PREFERRED
public static final CollectionMappingStrategyGem SETTER_PREFERRED
-
ADDER_PREFERRED
public static final CollectionMappingStrategyGem ADDER_PREFERRED
-
TARGET_IMMUTABLE
public static final CollectionMappingStrategyGem TARGET_IMMUTABLE
-
-
Method Detail
-
values
public static CollectionMappingStrategyGem[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CollectionMappingStrategyGem c : CollectionMappingStrategyGem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CollectionMappingStrategyGem valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-