Package com.tridion.broker.querying

Examples of com.tridion.broker.querying.MetadataType


      return sortColumn;
    }

    // assume it's custom meta key
    String customMetaKey = curentToken;
    MetadataType metadataType = getMetadataType();

    log.debug("Identified CustomMetaKeyColumn(" + customMetaKey + ", " + metadataType + ")");
    return new CustomMetaKeyColumn(customMetaKey, metadataType);
  }
View Full Code Here


  private MetadataType getMetadataType() {
    if (curentToken == null) {
      return MetadataType.STRING;
    }

    MetadataType metadataType;
    try {
      metadataType = MetadataType.valueOf(curentToken.toUpperCase());
      nextToken();
    } catch (IllegalArgumentException iae) {
      metadataType = MetadataType.STRING;
View Full Code Here

TOP

Related Classes of com.tridion.broker.querying.MetadataType

Copyright © 2018 www.massapicom. 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.