Package org.apache.abdera.ext.features.Feature

Examples of org.apache.abdera.ext.features.Feature.Status.ordinal()


  }
 
  public boolean select(Collection collection) {
    for (String feature : features) {
      Status status = FeaturesHelper.getFeatureStatus(collection, feature);
      if (status != null && status.ordinal() >= minimumStatus.ordinal())
        return true;
    }
    return false;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.