Class: Homebrew::Vulns::Vulnerability::Interval Private

Inherits:
T::Struct
  • Object
show all
Defined in:
vulns/vulnerability.rb

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lower: nil, upper: nil, upper_inclusive:, fix: nil) ⇒ void

Parameters:

  • lower (String, nil) (defaults to: nil)
  • upper (String, nil) (defaults to: nil)
  • upper_inclusive (Boolean)
  • fix (String, nil) (defaults to: nil)


# File ''

const :lower, T.nilable(String)
const :upper, T.nilable(String)
const :upper_inclusive, T::Boolean
const :fix, T.nilable(String)

Instance Attribute Details

#fixString? (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop fix.

Returns:



# File ''

const :fix, T.nilable(String)

#lowerString? (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop lower.

Returns:



# File ''

const :lower, T.nilable(String)

#upperString? (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop upper.

Returns:



# File ''

const :upper, T.nilable(String)

#upper_inclusiveBoolean (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop upper_inclusive.

Returns:

  • (Boolean)


# File ''

const :upper_inclusive, T::Boolean