Enum IGroupGetterStrategy

    • 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 name
        NullPointerException - 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 of EObject
        Returns:
        feature value or null
      • createEmptyResult

        protected abstract Object createEmptyResult()
      • createDifferentResult

        protected abstract Object createDifferentResult​(Object currentValue)