Enum IGroupGetterStrategy
- java.lang.Object
-
- java.lang.Enum<IGroupGetterStrategy>
-
- com._1c.g5.v8.dt.common.ui.databinding.IGroupGetterStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<IGroupGetterStrategy>
public enum IGroupGetterStrategy extends Enum<IGroupGetterStrategy>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
IGroupGetterStrategy.Result
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract Object
createDifferentResult(Object currentValue)
protected abstract Object
createEmptyResult()
Object
getOneFeatureValue(Iterable<org.eclipse.emf.ecore.EObject> eObjects, org.eclipse.emf.ecore.EStructuralFeature feature)
Check that all EObjects in model have same feature value and return it.static IGroupGetterStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static IGroupGetterStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCEPTION
public static final IGroupGetterStrategy EXCEPTION
-
NULL
public static final IGroupGetterStrategy NULL
-
FIRST
public static final IGroupGetterStrategy FIRST
-
-
Method Detail
-
values
public static IGroupGetterStrategy[] 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 (IGroupGetterStrategy c : IGroupGetterStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IGroupGetterStrategy valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getOneFeatureValue
public Object getOneFeatureValue(Iterable<org.eclipse.emf.ecore.EObject> eObjects, org.eclipse.emf.ecore.EStructuralFeature feature)
Check that all EObjects in model have same feature value and return it. The subclass implements the logic of the conflict resolving.- Parameters:
eObjects
- list ofEObject
- Returns:
- feature value or
null
-
createEmptyResult
protected abstract Object createEmptyResult()
-
-