コード例 #1
0
  // TODO: [AH] this should be pre-initialized in ObjectTemplate
  private EnumSet<AttributeType> getAttributeTypesAfter(
      final ObjectTemplate objectTemplate, final AttributeType attributeType) {
    final EnumSet<AttributeType> beforeAttributes = EnumSet.noneOf(AttributeType.class);
    final List<AttributeTemplate> attributeTemplates = objectTemplate.getAttributeTemplates();

    for (int i = 0; i < attributeTemplates.size(); i++) {
      final AttributeType templateType = attributeTemplates.get(i).getAttributeType();

      if (templateType == attributeType) {
        for (; i < attributeTemplates.size(); i++) {
          beforeAttributes.add(attributeTemplates.get(i).getAttributeType());
        }
      }
    }
    return beforeAttributes;
  }
コード例 #2
0
  /**
   * determine type by first type attribute present in object, then add attribute according to
   * attribute order in template.
   */
  public RpslObjectBuilder addAttributeSorted(final RpslAttribute newAttribute) {
    final ObjectType objectType = getType();
    final ObjectTemplate objectTemplate = ObjectTemplate.getTemplate(objectType);
    final EnumSet<AttributeType> attributesAfter =
        getAttributeTypesAfter(objectTemplate, newAttribute.getType());

    for (int i = 0; i < attributes.size(); i++) {
      if (attributesAfter.contains(attributes.get(i).getType())) {
        attributes.add(i, newAttribute);
        return this;
      }
    }

    attributes.add(newAttribute);
    return this;
  }
コード例 #3
0
 /**
  * determine type by first type attribute present in object, then sort attributes according to
  * attribute order in template. This sort is guaranteed to be <i>stable</i>: equal elements will
  * not be reordered as a result of the sort.
  */
 public RpslObjectBuilder sort() {
   final ObjectType objectType = getType();
   Collections.sort(
       attributes, ObjectTemplate.getTemplate(objectType).getAttributeTypeComparator());
   return this;
 }