jellyfin/MediaBrowser.Server.Implementations/Sorting/SortNameComparer.cs

33 lines
877 B
C#
Raw Normal View History

2013-03-10 05:22:36 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Sorting;
2013-03-10 06:36:39 +01:00
using MediaBrowser.Model.Querying;
2013-03-10 05:22:36 +01:00
namespace MediaBrowser.Server.Implementations.Sorting
{
/// <summary>
/// Class SortNameComparer
/// </summary>
public class SortNameComparer : IBaseItemComparer
{
/// <summary>
/// Compares the specified x.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
/// <returns>System.Int32.</returns>
public int Compare(BaseItem x, BaseItem y)
{
2013-12-08 21:47:11 +01:00
return AlphanumComparator.CompareValues(x.SortName, y.SortName);
2013-03-10 05:22:36 +01:00
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name
{
get { return ItemSortBy.SortName; }
}
}
}