Enum TransformationMethod

    • Enum Constant Detail

      • PropertyBagArrayToDictionary

        public static final TransformationMethod PropertyBagArrayToDictionary
        Property bag array to dictionary.
      • DateTimeFromUnixSeconds

        public static final TransformationMethod DateTimeFromUnixSeconds
        Converts UNIX epoch (seconds) to UTC datetime.
      • DateTimeFromUnixMilliseconds

        public static final TransformationMethod DateTimeFromUnixMilliseconds
        Converts UNIX epoch (milliseconds) to UTC datetime.
      • DateTimeFromUnixMicroseconds

        public static final TransformationMethod DateTimeFromUnixMicroseconds
        Converts UNIX epoch (microseconds) to UTC datetime.
      • DateTimeFromUnixNanoseconds

        public static final TransformationMethod DateTimeFromUnixNanoseconds
        Converts UNIX epoch (nanoseconds) to UTC datetime.
    • Method Detail

      • values

        public static TransformationMethod[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TransformationMethod c : TransformationMethod.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TransformationMethod valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null