Exemplo n.º 1
0
            internal Profile(string name, InnerEnum innerEnum, java.util.EnumSet <org.camunda.bpm.engine.impl.juel.Builder.Feature> features)
            {
                this.features_Renamed = features;

                nameValue      = name;
                ordinalValue   = nextOrdinal++;
                innerEnumValue = innerEnum;
            }
Exemplo n.º 2
0
 public static bool HasFlag <T>(this java.util.EnumSet values, T flag) => values.contains(flag);