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

com.github.alexeylapin.m3u8.model.Channels 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 Channels {

    int count();

    List objectCodingIdentifiers();

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

    class Builder extends ChannelsBuilder {

    }

    static Channels of(int count) {
        return builder().count(count).build();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy