Enum DatacubeType

    • Enum Constant Detail

      • GETUSERSUMMARY

        public static final DatacubeType GETUSERSUMMARY
        获取用户增减数据
      • GETUSERCUMULATE

        public static final DatacubeType GETUSERCUMULATE
        获取累计用户数据
      • GETARTICLESUMMARY

        public static final DatacubeType GETARTICLESUMMARY
        获取图文群发每日数据
      • GETARTICLETOTAL

        public static final DatacubeType GETARTICLETOTAL
        获取图文群发总数据,获取的是某天所有被阅读过的文章(仅包括群发的文章)在当天的阅读次数等数据。
      • GETUSERREAD

        public static final DatacubeType GETUSERREAD
        获取图文统计数据,获取的是某天群发的文章,从群发日起到接口调用日(但最多统计发表日后7天数据), 每天的到当天的总等数据。例如某篇文章是12月1日发出的,发出后在1日 、2日、3日的阅读次数分别为1万,则getarticletotal获取到的数据为 ,距发出到12月1日24时的总阅读量为1万,距发出到12月2日24时的总阅读量为2万,距发出到12月1日24时的总阅读量为3万。
      • GETUSERREADHOUR

        public static final DatacubeType GETUSERREADHOUR
        获取图文统计分时数据
      • GETUSERSHARE

        public static final DatacubeType GETUSERSHARE
        获取图文分享转发数据
      • GETUSERSHAREHOUR

        public static final DatacubeType GETUSERSHAREHOUR
        获取图文分享转发分时数据
      • GETUPSTREAMMSG

        public static final DatacubeType GETUPSTREAMMSG
        获取消息发送概况数据
      • GETUPSTREAMMSGHOUR

        public static final DatacubeType GETUPSTREAMMSGHOUR
        获取消息分送分时数据
      • GETUPSTREAMMSGWEEK

        public static final DatacubeType GETUPSTREAMMSGWEEK
        获取消息发送周数据 关于周数据与月数据,请注意:每个月/周的周期数据的数据标注日期在当月/当周的第一天(当月1日或周一)。在某一月/周过后去调用接口 ,才能获取到该周期的数据 。比如,在12月1日以(11月1日-11月5日)作为(begin_date和end_date)调用获取月数据接口,可以获取到11月1日的月数据 (即11月的月数据)。
      • GETUPSTREAMMSGMONTH

        public static final DatacubeType GETUPSTREAMMSGMONTH
        获取消息发送月数据
      • GETUPSTREAMMSGDIST

        public static final DatacubeType GETUPSTREAMMSGDIST
        获取消息发送分布数据
      • GETUPSTREAMMSGDISTWEEK

        public static final DatacubeType GETUPSTREAMMSGDISTWEEK
        获取消息发送分布周数据
      • GETUPSTREAMMSGDISTMONTH

        public static final DatacubeType GETUPSTREAMMSGDISTMONTH
        获取消息发送分布月数据
      • GETINTERFACESUMMARY

        public static final DatacubeType GETINTERFACESUMMARY
        获取接口分析数据
      • GETINTERFACESUMMARYHOUR

        public static final DatacubeType GETINTERFACESUMMARYHOUR
        获取接口分析分时数据
    • Method Detail

      • values

        public static DatacubeType[] 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 (DatacubeType c : DatacubeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DatacubeType 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
      • getClazz

        public Class<?> getClazz()