Class ContentMetadataMutations


  • @Deprecated
    public class ContentMetadataMutations
    extends Object
    Deprecated.
    com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.
    Defines multiple mutations on metadata value which are applied atomically. This class isn't thread safe.
    • Constructor Detail

      • ContentMetadataMutations

        public ContentMetadataMutations()
        Deprecated.
        Constructs a DefaultMetadataMutations.
    • Method Detail

      • set

        @CanIgnoreReturnValue
        public ContentMetadataMutations set​(String name,
                                            String value)
        Deprecated.
        Adds a mutation to set a metadata value.
        Parameters:
        name - The name of the metadata value.
        value - The value to be set.
        Returns:
        This instance, for convenience.
      • set

        @CanIgnoreReturnValue
        public ContentMetadataMutations set​(String name,
                                            long value)
        Deprecated.
        Adds a mutation to set a metadata value.
        Parameters:
        name - The name of the metadata value.
        value - The value to be set.
        Returns:
        This instance, for convenience.
      • set

        @CanIgnoreReturnValue
        public ContentMetadataMutations set​(String name,
                                            byte[] value)
        Deprecated.
        Adds a mutation to set a metadata value.
        Parameters:
        name - The name of the metadata value.
        value - The value to be set.
        Returns:
        This instance, for convenience.
      • remove

        @CanIgnoreReturnValue
        public ContentMetadataMutations remove​(String name)
        Deprecated.
        Adds a mutation to remove a metadata value.
        Parameters:
        name - The name of the metadata value.
        Returns:
        This instance, for convenience.
      • getRemovedValues

        public List<String> getRemovedValues()
        Deprecated.
        Returns a list of names of metadata values to be removed.
      • getEditedValues

        public Map<String,​Object> getEditedValues()
        Deprecated.
        Returns a map of metadata name, value pairs to be set. Values are copied.