Coverage Summary for Class: HouseOrder (com.galarzaa.tibiakt.core.section.community.house.model)

Class Class, % Method, % Branch, % Line, % Instruction, %
HouseOrder 100% (1/1) 100% (2/2) 100% (6/6) 100% (50/50)


 /*
  * Copyright © 2025 Allan Galarza
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  *
  *     http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
 
 package com.galarzaa.tibiakt.core.section.community.house.model
 
 import com.galarzaa.tibiakt.core.enums.StringEnum
 
 /**
  * Possible fields to order houses or guildhalls by.
  */
 public enum class HouseOrder(override val value: String) : StringEnum {
     /** Order by name, alphabetically. */
     NAME("name"),
 
     /** Order by size. */
     SIZE("size"),
 
     /** Order by rent. */
     RENT("rent"),
 
     /** Order by bid. */
     BID("bid"),
 
     /** Order by auction's end date. */
     AUCTION_END("end"),
 }