com.jniwrapper.win32.service
Class Service.StartupType

java.lang.Object
  extended by com.jniwrapper.util.EnumItem
      extended by com.jniwrapper.win32.service.Service.StartupType
Enclosing class:
Service

public static class Service.StartupType
extends com.jniwrapper.util.EnumItem

This class represents startup type of service.


Field Summary
static Service.StartupType AUTO_START
          Service is started at system startup.
static Service.StartupType BOOT_START
          Device driver is started by the IoInitSystem function.
static Service.StartupType DEMAND_START
          Service is started by the user in Controls application or programmatically.
static Service.StartupType DISABLED
          Service is disabled.
static Service.StartupType SYSTEM_START
          Device driver is started by the system loader.
 
Constructor Summary
Service.StartupType(int value, java.lang.String stringValue)
           
 
Method Summary
static Service.StartupType create(int type)
           
 
Methods inherited from class com.jniwrapper.util.EnumItem
equals, getLongValue, getValue, hashCode, isOneOf
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

BOOT_START

public static final Service.StartupType BOOT_START
Device driver is started by the IoInitSystem function.


SYSTEM_START

public static final Service.StartupType SYSTEM_START
Device driver is started by the system loader.


AUTO_START

public static final Service.StartupType AUTO_START
Service is started at system startup.


DEMAND_START

public static final Service.StartupType DEMAND_START
Service is started by the user in Controls application or programmatically.


DISABLED

public static final Service.StartupType DISABLED
Service is disabled.

Constructor Detail

Service.StartupType

public Service.StartupType(int value,
                           java.lang.String stringValue)
Method Detail

create

public static Service.StartupType create(int type)