Enum Class CMFileSyncMode

java.lang.Object
java.lang.Enum<CMFileSyncMode>
kr.ac.konkuk.ccslab.cm.info.enums.CMFileSyncMode
All Implemented Interfaces:
Serializable, Comparable<CMFileSyncMode>, Constable

public enum CMFileSyncMode extends Enum<CMFileSyncMode>
File synchronization mode.
  • Enum Constant Details

    • OFF

      public static final CMFileSyncMode OFF
      OFF means that the client does not start the file sync.
    • MANUAL

      public static final CMFileSyncMode MANUAL
      MANUAL means that the client starts the file sync with the manual file mode change mechanism.*
    • AUTO

      public static final CMFileSyncMode AUTO
      AUTO means that the client starts the file sync with the active file mode change mechanism.
  • Method Details

    • values

      public static CMFileSyncMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CMFileSyncMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null