The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Devel::Ladybug::Enum::Flatfile - Flatfile type enumeration

DESCRIPTION

Uses Devel::Ladybug::Enum to provide constants which are used to specify database types. The class variable __useFlatfile should return one of the constants in this package.

SYNOPSIS

  create "YourApp::YourClass" => {
    __useFlatfile => Devel::Ladybug::Enum::Flatfile::<Type>,

  };

CONSTANTS

  • Devel::Ladybug::Enum::Flatfile::None

    Specify no flatfile type (0)

  • Devel::Ladybug::Enum::Flatfile::YAML

    Specify YAML as a flatfile type (1)

  • Devel::Ladybug::Enum::Flatfile::JSON

    Specify JSON as a flatfile type (2)

SEE ALSO

Devel::Ladybug::Enum, Devel::Ladybug::Persistence

This file is part of Devel::Ladybug.