All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.alexeylapin.m3u8.model.Skip Maven / Gradle / Ivy

The newest version!
package com.github.alexeylapin.m3u8.model;

import org.immutables.value.Value;

import java.util.List;

@Value.Immutable
public interface Skip {

    long skippedSegments();

    List recentlyRemovedDateRanges();

    static Builder builder() {
        return new Builder();
    }

    class Builder extends SkipBuilder {

    }

    static Skip of(long skippedSegments) {
        return builder().skippedSegments(skippedSegments).build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy