com.github.wshackle.fanuc.robotserver.FRESaveClassConstants Maven / Gradle / Ivy
package com.github.wshackle.fanuc.robotserver ;
import com4j.*;
/**
*
* Enumeration of class constants used when saving to a file.
*
*/
public enum FRESaveClassConstants {
/**
*
* Save all system variables
*
*
* The value of this constant is 0
*
*/
frAllSaveClass, // 0
/**
*
* Save majority of system variables
*
*
* The value of this constant is 1
*
*/
frMajoritySaveClass, // 1
/**
*
* Save mastering system variables
*
*
* The value of this constant is 2
*
*/
frMasterSaveClass, // 2
/**
*
* Save servo system variables
*
*
* The value of this constant is 3
*
*/
frServroSaveClass, // 3
/**
*
* Save nosave system variables
*
*
* The value of this constant is 4
*
*/
frNoSaveClass, // 4
/**
*
* Save macro system variables
*
*
* The value of this constant is 5
*
*/
frMacroSaveClass, // 5
/**
*
* Save Spot system variables
*
*
* The value of this constant is 6
*
*/
frSpotSaveClass, // 6
/**
*
* Save PROFIBUS system variables
*
*
* The value of this constant is 7
*
*/
frProfibusSaveClass, // 7
/**
*
* Save PROFIBUS-FMS system variables
*
*
* The value of this constant is 8
*
*/
frProfibusFMSSaveClass, // 8
/**
*
* Save password system variables
*
*
* The value of this constant is 9
*
*/
frPasswordSaveClass, // 9
/**
*
* Save network host system variables
*
*
* The value of this constant is 10
*
*/
frHostSaveClass, // 10
/**
*
* Save FTP server access control system variables
*
*
* The value of this constant is 11
*
*/
frFTPAccessSaveClass, // 11
/**
*
* Save intergrated PMC system variables
*
*
* The value of this constant is 12
*
*/
frPMCSaveClass, // 12
}