/** * converts the long value flags to a MechanismInfoFlag string * * @param flags the flags to be converted * @return the MechanismInfoFlag string representation of the flags */ public static String mechanismInfoFlagsToString(long flags) { return mechanismInfoFlags.toString(flags); }
/** * converts long value flags to a TokenInfoFlag string * * @param flags the flags to be converted * @return the TokenInfoFlag string representation of the flags */ public static String tokenInfoFlagsToString(long flags) { return tokenInfoFlags.toString(flags); }
/** * converts the long value flags to a SessionInfoFlag string * * @param flags the flags to be converted * @return the SessionInfoFlag string representation of the flags */ public static String sessionInfoFlagsToString(long flags) { return sessionInfoFlags.toString(flags); }
/** * converts the long value flags to a SlotInfoFlag string * * @param flags the flags to be converted * @return the SlotInfoFlag string representation of the flags */ public static String slotInfoFlagsToString(long flags) { return slotInfoFlags.toString(flags); }