Package me.keehl.elevators.api.services
Interface IElevatorTypeService
-
- All Superinterfaces:
IElevatorService
public interface IElevatorTypeService extends IElevatorService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IElevatorTypecreateElevatorType(java.lang.String typeKey)booleandoesElevatorTypeExist(java.lang.String name)IElevatorTypegetDefaultElevatorType()IElevatorTypegetElevatorType(java.lang.String name)java.util.Set<java.lang.String>getExistingElevatorKeys()java.util.Collection<IElevatorType>getExistingElevatorTypes()-
Methods inherited from interface me.keehl.elevators.api.services.IElevatorService
onInitialize, onUninitialize
-
-
-
-
Method Detail
-
getElevatorType
IElevatorType getElevatorType(java.lang.String name)
-
getDefaultElevatorType
IElevatorType getDefaultElevatorType()
-
doesElevatorTypeExist
boolean doesElevatorTypeExist(java.lang.String name)
-
getExistingElevatorTypes
java.util.Collection<IElevatorType> getExistingElevatorTypes()
-
getExistingElevatorKeys
java.util.Set<java.lang.String> getExistingElevatorKeys()
-
createElevatorType
IElevatorType createElevatorType(java.lang.String typeKey)
-
-