Class XStream12FieldKeySorter

java.lang.Object
com.thoughtworks.xstream.converters.reflection.XStream12FieldKeySorter
All Implemented Interfaces:
FieldKeySorter

public class XStream12FieldKeySorter extends Object implements FieldKeySorter
Sort the fields in the order of XStream 1.2.x. Fields are returned in their declaration order, fields of base classes last.
Since:
1.3
  • Constructor Details

    • XStream12FieldKeySorter

      public XStream12FieldKeySorter()
  • Method Details

    • sort

      public Map sort(Class type, Map keyedByFieldKey)
      Description copied from interface: FieldKeySorter
      Sort the fields of a type. The method will be called with the class type that contains all the fields and a Map that retains the order in which the elements have been added. The sequence in which elements are returned by an iterator defines the processing order of the fields. An implementation may create a different Map with similar semantic, add all elements of the original map and return the new one.
      Specified by:
      sort in interface FieldKeySorter
      Parameters:
      type - the class that contains all the fields
      keyedByFieldKey - a Map containing a FieldKey as key element and a Field as value.
      Returns:
      a Map with all the entries of the original Map