Class Locality_1_0

  • All Implemented Interfaces:
    com.gradle.scan.eventmodel.EventData

    @GradleVersion(since="2.0")
    @PluginVersion(since="1.0")
    public class Locality_1_0
    extends Object
    implements com.gradle.scan.eventmodel.EventData
    An EventData containing locality details of the JVM that executed the build.

    An event stream will contain a single Locality_1_0.

    • Field Detail

      • localeLanguage

        public final String localeLanguage
        The locale language of the JVM that executed the build.
        See Also:
        Locale.getLanguage()
      • localeCountry

        public final String localeCountry
        The locale country of the JVM that executed the build.
        See Also:
        Locale.getCountry()
      • localeVariant

        public final String localeVariant
        The locale variant of the JVM that executed the build.
        See Also:
        Locale.getVariant()
      • timeZoneId

        public final String timeZoneId
        The time zone id of the JVM that executed the build.
        See Also:
        TimeZone.getID()
      • timeZoneOffsetMillis

        public final int timeZoneOffsetMillis
        The time zone offset of the JVM that executed the build.
        See Also:
        TimeZone.getOffset(long)
    • Constructor Detail

      • Locality_1_0

        public Locality_1_0​(String localeLanguage,
                            String localeCountry,
                            String localeVariant,
                            String timeZoneId,
                            int timeZoneOffsetMillis)